Change histogram to more bars
6 次查看(过去 30 天)
显示 更早的评论
I am generating random numbers. The histogram has a sample size of 20 but only 5 bars. How can I control the bar numbers?
0 个评论
采纳的回答
Sindar
2020-10-25
histogram accepts the number of bins as a second argument:
x = randn(1000,1);
nbins = 25;
h = histogram(x,nbins)
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!