Bar graph and "stacked" options.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Pietro Fiondella
am 5 Jul. 2022
Kommentiert: Pietro Fiondella
am 5 Jul. 2022
I would like to obtain a bar graph with olnly some data showed as stacked.
For example consider this script.
A=[1 2 3; 2 5 3; 1 4 3];
bar (A)
I can obtain a also this type of graph with 'stacked' bars
bar(A,'stacked')
I would like to obtain a graph in wich only some data are stacked.
For example the first elements of A should appear "1" as alone bar and "2 ,3" stacked with different coulors. how can i do it?
I tryed this but it dosent work.
bar(A(1,1), A(1,2:3),'stacked')
0 Kommentare
Akzeptierte Antwort
Constantino Carlos Reyes-Aldasoro
am 5 Jul. 2022
This is solved easily by adding zeros in the columns that you do not want a stack, e.g.
bar ( [1 2 3;0 2 3;0 0 6]','stacked')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!