필터 지우기
필터 지우기

Overlaying histogram with lines and not bars

조회 수: 6 (최근 30일)
Mads Svendsen-Tune
Mads Svendsen-Tune 2011년 5월 14일
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