我想呈現兩個直方圖,並且我希望它們中的每一個都是不同的顏色。可以說一個紅色和一個藍色。到目前爲止,我已經改變了他們兩個的顏色,但只改變了相同的顏色。
這是代碼不同顏色的直方圖-matlab
close all
b=-10:1:10;
x=randn(10^5,1);
x=(x+5)*3;
y=randn(1,10^5);
y=(y+2)*3;
hist(x,100)
hold on
hist(y,100);
h = findobj(gca,'Type','patch');
set(h,'FaceColor','r','EdgeColor','w')
%the last two lines changes the color of both hists.