Overlaying histogram with lines and not bars
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi all.
Can somebody tell me how to plot histograms with lines instead of bars in Matlab?
Thanks.
0 Commenti
Risposta accettata
bym
il 14 Mag 2011
did you want something like
x = 5+2*randn(1000,1);
h = histc(x,(0:9));
stem(h,'b')
or like
plot(h,(0:9))
Più risposte (0)
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!