Change histogram to more bars
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mustafa Vural
il 25 Ott 2020
Commentato: Mustafa Vural
il 25 Ott 2020
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 Commenti
Risposta accettata
Sindar
il 25 Ott 2020
histogram accepts the number of bins as a second argument:
x = randn(1000,1);
nbins = 25;
h = histogram(x,nbins)
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Histograms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!