フィルターのクリア

Bar plot with different color and tick label for each bar

3 ビュー (過去 30 日間)
mitilma
mitilma 2013 年 11 月 14 日
Hi,
What I expect below code to output is 4 different bars in a bar plot each with different colors, and with tick labels 'a', 'b', 'c', and 'd' respectively. Colors are fine, but only the first bar has the label 'a', the other three have no labels. How can I achieve tick labeling bars in the bar plot while highlighting them with different colors? I am using version 2010b. Thanks!
deneme = [1 2 3 4];
figure;
for i=1:length(deneme)
if i==1
colorcode = 'b';
elseif i==2
colorcode = 'g';
elseif i==3
colorcode = 'r';
else
colorcode = 'k';
end
bar(i, deneme(i), colorcode);
hold on;
end
set(gca,'XTickLabel',{'a'; 'b'; 'c'; 'd'})

回答 (0 件)

カテゴリ

Help Center および File ExchangeLabels and Annotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by