matlab绘制二维图,怎样调整y轴的方向?

2025-01-04 06:49:29
推荐回答(2个)
回答1:

x=0:1:20;
plot(x,2*x.*x);

set(gca,'ydir','reverse')

回答2:

axis ij
不就把y轴向下了吗?