필터 지우기
필터 지우기

Script which creates overlapping histograms?

조회 수: 1 (최근 30일)
mick strife
mick strife 2014년 4월 29일
답변: Chad Greene 2014년 8월 14일
Hello :-)
does anyone know if there is an existing script available which can create a histogram like that:
Many thanks! :-)

답변 (2개)

the cyclist
the cyclist 2014년 4월 29일
[count1,center1] = hist(randn(500,1));
[count2,center2] = hist(randn(500,1)+3);
figure
hold on
b1=bar(center1,count1,'r')
b2=bar(center2,count2,'b')

Chad Greene
Chad Greene 2014년 8월 14일
histf will do it.

카테고리

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