2013-12-12 141 views
1

我需要在3個酒吧在matlab中做一個條形圖。三個小節的值存儲在x中。現在我想創建一個圖例:每個欄應該用一個字母標記,例如'A', 'B', 'C'。matlab酒吧情節:標籤3酒吧每個只有一個值

x = rand(1,3); bar(x); legend('A','B','C'); 

沒有工作。 後來我試過了這個例子:http://www.mathworks.com/matlabcentral/fileexchange/35271-matlab-plot-gallery-vertical-bar-plot/content/html/Vertical_Bar_Plot.html

但只要你減少在每個類別中的條目數爲1,你會得到一個錯誤信息,但我認爲該消息是錯誤= /它的工作原理與任何但只是不與1 ...

那麼是否有一個簡單的解決方案,以解決這個問題?

回答

0

你想要的是一個「三連串圖」 - 不幸的是,只要你把它做成1x3,Matlab認爲它只是一個系列。我們必須欺騙它以爲你有三個系列。這裏是你如何做到這一點:

x = rand(1,3); 
x2 = [x; x*0]; % add a second row of all zeros 
figure 
bar(x2);   % now we have a plot with an ugly second category 
xlim([0.5 1.5]); % trick that hides second category 
legend('a','b','c'); % add the legend 
set(gca, 'XTickLabel', ''); % hide the '1' on the X axis (or make it whatever you want) 
title 'Bar plot with legend - demo' 

結果則是這樣的:

enter image description here

我相信這是你問的什麼了。

+0

非常感謝!這真的就是我正在尋找的東西! – flawr

+0

我確實想到,繪製單個系列並更改'XTickLabel'以反映圖例(「分類軸」)會更傳統(a,b,c而不是X軸上的1,2,3) - 但這不是你要求的。就像這樣你會得到不同的顏色...... – Floris