反转一个yy轴的plotyy

时间:2014-04-26 18:36:08

标签: matlab plot

我的代码:

figure
[ax, h1, h2] = plotyy(x1,y1,x2,y2,'semilogy','semilogy');

现在我要反转第二个y轴的方向。我尝试添加:

set(h2,'YDir','reverse');

但是这会导致以下错误:

The name 'YDir' is not an accessible property for an instance of class 'lineseries'.

1 个答案:

答案 0 :(得分:3)

Ydir是轴的可写属性,而不是图形对象的可写属性:

set(ax(2),'YDir','reverse')