Multiple color bar graph in Matlab

2 visualizzazioni (ultimi 30 giorni)
Vartika Agarwal
Vartika Agarwal il 20 Mag 2022
Risposto: KSSV il 20 Mag 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

Risposta accettata

KSSV
KSSV il 20 Mag 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

Più risposte (0)

Categorie

Scopri di più su Graphics Object Identification in Help Center e File Exchange

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by