Filter löschen
Filter löschen

Script which creates overlapping histograms?

1 Ansicht (letzte 30 Tage)
mick strife
mick strife am 29 Apr. 2014
Beantwortet: Chad Greene am 14 Aug. 2014
Hello :-)
does anyone know if there is an existing script available which can create a histogram like that:
Many thanks! :-)

Antworten (2)

the cyclist
the cyclist am 29 Apr. 2014
[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 am 14 Aug. 2014
histf will do it.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by