翻转轴刻度

时间:2011-02-26 14:51:17

标签: matlab

  

可能重复:
  How do I edit the axes of an image in MATLAB to reverse the direction?

嘿伙计们,

在MatLab中,我有一对轴,其中y轴从(0,0)开始,并计数到(0,100),在此x轴上的刻度线为0,1,2,...,100 。可以翻转它,所以它是100,99,...,0 所以原点是(0,100)?有任何想法吗?我知道这是可能的,因为我看过这样的图形数据。

1 个答案:

答案 0 :(得分:2)

在绘制图表之前

set(gca,'YDir','reverse');。感谢gary comtois的链接 - stackoverflow.com/questions/2865600 /