Multiple color bar graph in Matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Vartika Agarwal
am 20 Mai 2022
Beantwortet: KSSV
am 20 Mai 2022
I want to plot a multi color bar graph in Matlab
I have the data
x=[1 2 3]
y=[10 20 30 40]
Please find the attachment and solve the query
0 Kommentare
Akzeptierte Antwort
KSSV
am 20 Mai 2022
x=[1 2 3] ;
y=[10 20 30] ;
c = {'r','g','b'} ;
figure
hold on
for i = 1:3
bar(x(i),y(i),c{i})
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!
