Invert or reverse Yaxis ticks in a plot or scatter graph
17 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
José-Luis
2017-8-22
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';
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Scatter Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!