How to change the colours of bars in a histogram with multiple data

28 次查看(过去 30 天)
I have two Data sets re_hight and re_low. I made a distribution of both sets withing the same diagram. How can i chage the default colours to red and blue?
the code for the plot is:
hist([re_low re_high],[-2:2:182]);
xlim([-2 82]);

采纳的回答

Bjorn Gustavsson
Bjorn Gustavsson 2022-6-6
If you take the output from hist and plot that with bar, you can do something like this:
[phH1,phH2] = hist([re_low' re_high'],[-2:2:182]);
bh = bar(phH2,phH1);
set(bh(1),'FaceColor','b')
set(bh(2),'FaceColor','r')
HTH

更多回答(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