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

 채택된 답변

KSSV
KSSV 2022년 5월 20일

1 개 추천

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개)

카테고리

제품

릴리스

R2018a

태그

질문:

2022년 5월 20일

답변:

2022년 5월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by