Invert or reverse Yaxis ticks in a plot or scatter graph

15 vues (au cours des 30 derniers jours)
Stephen Devlin
Stephen Devlin le 22 Août 2017
Commenté : José-Luis le 22 Août 2017
Hi,
I can find documentation to reverse the Yaxis for imagesc but not for a regular plot. I have data where the origin is the top left hand corner and want to preserve that y measurement rather than have it flipped.
sample code:
x=1:10
y=[0.4 0.61 0.45 0.66 0.41 0.63 0.44 0.62 0.46 0.6]
scatter(x,y,'filled','bo')
What I would like to see is a plot with the axis left the way it is but the Y-axis start with say 0.4 at the top and increase as it gets closer to the Xaxis intercept.
Any ideas?

Réponse acceptée

José-Luis
José-Luis le 22 Août 2017
x=1:10;
y=[0.4 0.61 0.45 0.66 0.41 0.63 0.44 0.62 0.46 0.6];
aH = axes;
scatter(aH,x,y,'filled','bo');
aH.YDir = 'reverse';
  2 commentaires
Stephen Devlin
Stephen Devlin le 22 Août 2017
Perfect, thank you José.
José-Luis
José-Luis le 22 Août 2017
My pleasure.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter 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!

Translated by