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')
>>axis([0,pi/2,0,5]) % 改变坐标轴范围
>>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函数
Matlab是一款功能强大的数学软件,可以用它在绘图的同时添加坐标轴。其中隐函数绘图可以使用“ezplot”命令进行绘制。在绘图时,需要使用“axis”函数来设置坐标轴的范围。同时,可以使用“xlabel”和“ylabel”命令来添加坐标轴标签。需要注意的是,在添加坐标轴标签时可以使用“LaTeX”命令使标签更具有可视性。如果需要更加详细的资料,可以查看Matlab的官方文档。用axis设定坐标轴即可,给楼主举个例子>>x=1:0.1:10
>>y=x
>>plot(x,y)
>>axis([0 10 0 10]) %%%% axis([xmin xmax ymin ymax])
建议自己 help axis
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)