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

28 vues (au cours des 30 derniers jours)
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]);

Réponse acceptée

Bjorn Gustavsson
Bjorn Gustavsson le 6 Juin 2022
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
  2 commentaires
yousra boukaissi
yousra boukaissi le 6 Juin 2022
Modifié(e) : yousra boukaissi le 6 Juin 2022
Thanks a lot it worked!!! i really appreciate it
Bjorn Gustavsson
Bjorn Gustavsson le 7 Juin 2022
Great, happy that it helped.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by