MATLAB: Overlaying histogram with lines and not bars

histogram

Hi all.
Can somebody tell me how to plot histograms with lines instead of bars in Matlab?
Thanks.

Best Answer

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))
Related Question