Overlaying histogram with lines and not bars

7 次查看(过去 30 天)
Hi all.
Can somebody tell me how to plot histograms with lines instead of bars in Matlab?
Thanks.

采纳的回答

bym
bym 2011-5-14
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))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by