bar graph help needed

I am trying to make both bar graphs show up on the same subplot...
Mean08 needs to be red bar graph
subplot(2,2,[1 3]);
bar(Mean0);bar(Mean08, 'r');
I did that wrong but, I want someone to rewrite the second line

 채택된 답변

Walter Roberson
Walter Roberson 2011년 10월 2일

0 개 추천

subplot(2,2,[1 3]);
bar(Mean0); hold on; bar(Mean08, 'r');

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by