複数のヒストグラムを重ね合わせたいのですが、その方法がわかりません。以下のコードを見つけましたが、2 つのヒストグラムだけでなくループで実行するように変更する方法がわかりません。
data1 = randn(100,1); % data of one size
data2 = randn(25, 1); % data of another size!
myBins = linspace(-3,3,10); % pick my own bin locations
% Hists will be the same size because we set the bin locations:
y1 = hist(data1, myBins);
y2 = hist(data2, myBins);
% plot the results:
figure(3);
bar(myBins, [y1;y2]');
title('Mixed size result');
または、ヒストグラムが10または20を超える場合、ヒストグラムを比較するより良い方法は何ですか.