Bar Graph Stacked with Negative and Positive values
29 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Brishen
am 7 Okt. 2011
Bearbeitet: Koorosh Aslansefat
am 17 Jul. 2020
Hi.
I'm trying to get a plot to act like the graph function in excel that stacks values together. It does this by putting all positive values on the positive part of the axis, and the negative values on the negative side.
Unfortunatly when I use bar(X,'stack') with matlab it doesn't do this.
Is there any way to get this same functionality? Thanks.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
Walter Roberson
am 7 Okt. 2011
It isn't clear to me that what you describe would be appropriate? 'stacked' means to show the cumulative sum with internal divisions. If some members of the bar are positive and others are negative, then if you have a break at the axis then you misrepresent the cumulative sum.
2 Kommentare
Walter Roberson
am 7 Okt. 2011
Something like this, perhaps:
t1 = X;
t2 = X;
t1(t1<0) = nan;
t2(t2>0) = nan;
Xsplit = reshape([t2.';t1.'],size(t,2),[]).';
bar(Xsplit,'stacked')
Koorosh Aslansefat
am 17 Jul. 2020
Bearbeitet: Koorosh Aslansefat
am 17 Jul. 2020
I would suggest to try this:
bar(X,'BaseValue',0)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Discrete Data Plots 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!