Invert or reverse Yaxis ticks in a plot or scatter graph
17 views (last 30 days)
Show older comments
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?
0 Comments
Accepted Answer
José-Luis
on 22 Aug 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';
More Answers (0)
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!