Bar graphed 'stack' option
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I have a problem when plotting a bar graph using the 'stack' option. The stacked bar graph I get do not give the right sum of the elements in the matrix when the elements are of negative values. I attached a simple matrix here A=[8 -1 -4 -2 3; 2 -5 -1 -2 -7]
The summation of the first row= 4 The summation of the second row= -13 The command >>bar(A,'stack) does not display the right summation. Can anyone please explain why is that so?
Thank you in advance.
0 commentaires
Réponses (2)
Sean de Wolski
le 10 Avr 2012
If you want to see the sum, then you'll need to feed the sum of A into bar()
bar(sum(A,2),'stacked')
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!