How can we plot a random number ina bar graph
5 ビュー (過去 30 日間)
古いコメントを表示
How we plot random 20000number between -5 to 10 in bar graph.
0 件のコメント
回答 (1 件)
Walter Roberson
2020 年 10 月 4 日
r = rand(1,20000) * 15 - 5; %random -5 exclusive to +10 exclusive
bar(r)
This assumes you are looking for continuous numbers. If you are looking for integers, then use randi() to generate the numbers.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Bar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!