labelling x axis vertically
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a graph ,and i want to label the axis vertically ,can u help please..
I gave bar graphs ,there are 7 bars in that graph
bar(y)
plots the graph for the values of y
x axis is labelled as 1 2 3 4 5....
i want to label the x axis vertically
i know to label for horizontal ,please tell for vertical
0 commentaires
Réponses (1)
Wayne King
le 10 Nov 2011
You mean you want the bar graphs extending from the vertical axis?
x = 1:4;
y = randperm(4);
barh(x,y);
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!