Matlab里axis这个函数怎么用,举个例子!
问题描述:
Matlab里axis这个函数怎么用,举个例子!
答
在plot写完后 加上axis([0 1 2 3])
则表明图线的x轴范围为0~1y轴范围为2~3
如 plot(x,y)
axis([0 1 2 3])
grid on