How to: simple stack bar

4 次查看(过去 30 天)
Hi
I want to stack a bar but it gives error
X as Y same lenght
i have a simple matrix,
A=[76 96 68 15 112 160]
I plot:
bar(1,A(1,1),'c')
hold on
bar(2,A(1,2),'y')
till bar 6 with each own color, bar 7 should be total of them off them but stacked and with each of them with their representative color.

采纳的回答

the cyclist
the cyclist 2013-2-8
Here is one way:
A = [76 96 68 15 112 160];
A6 = nan(6,6);
A6(1:7:36) = A;
A7 = [A6;A];
bar(A7,'stacked');

更多回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2013-2-8
编辑:Azzi Abdelmalek 2013-2-8
close
A=[76 96 68 15 112 160]
cl='rgbkcm'
for k=1:6
bar(k,A(k),cl(k))
hold on
end
set(gca,'xtick',1:6)

类别

Help CenterFile Exchange 中查找有关 Bar Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by