Hi when I plot I always get the same color for both bar. They are from different classes. How can I make the color different? Thank you.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
sam
am 28 Nov. 2022
Kommentiert: William Rose
am 28 Nov. 2022
close all
clear
clc
r = [100; 80];
bar(r)
ylabel('Accuracy');
xlabel('Classifier')
%yticks([0 0.2 0.4 0.6 0.8 1])
xticklabels({'Mono', 'Hetero'})
0 Kommentare
Akzeptierte Antwort
William Rose
am 28 Nov. 2022
@sam,
y=[100 90 70];
b=bar(y,'FaceColor','flat');
%Next line: Each row is the colorspec for one bar
b.CData=[1,0,0;0,1,0;0,0,1];
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!