您的位置首页生活小窍门

Matlab里axis这个函数怎么用,举个例子!

axis函数可以用于操作普通的坐标属性(轴的缩放和外观)。

比如:

axis( [xmin xmax ymin ymax] ):可稿姿以设置当前坐标轴 x轴 和 y轴的限制范围

axis( [xmin xmax ymin ymax zmin zmax cmin cmax] ) 可以设置 x,y,z轴的限制范围和色差范围。

v = axis 返回一个行向量,记录野庆了坐标范围

axis auto 解除限制,恢复到默认状态。

举例说明:

画一个tan函数从0到2π。

>> x=0:0.01:pi/2;

>> y=tan(x);

>> figure

>> plot(x,y,'-o')

Matlab里axis这个函数怎么用,举个例子!

>> axis([0,pi/2,0,5])    % 改变坐标轴范围

Matlab里axis这个函数怎么用,举个例子!

>> v = axis    % 返回坐标轴的范围

v =    0    1.5708         0    5.0000

扩展资料

axis实现图形坐标控制

clear all;

close all;

clc;

t =0:2*pi/99:2*pi; 

x =1.5*cos(t);

y =3.25*sin(t);

subplot(2,3,1),plot(x,y);

axis normal,grid on, title('Normal and Grid on') 

subplot(2,3,2),plot(x,y);

axis equal,grid on, title('Equal and Grid on') 

subplot(2,3,3),plot(x,y);

axis square,grid on, title('颂敬握Square and Grid on')

subplot(2,3,4),plot(x,y);

axis image,box off,title('Image and Box off')

subplot(2,3,5),plot(x,y);

axis image fill,box off, title('Image fill and box off')

subplot(2,3,6),plot(x,y);

axis tight,box off, title('Tight and box off'

参考资料:百度百科-axis函数