:
figure('Position', [left, bottom, width, height]);
left 参数 : 图形对话框在 Windows 界面中 , 距离屏幕左侧的距离 ;
bottom...参数 : 图形对话框在 Windows 界面中 , 距离屏幕底部的距离 ;
width 参数 : 图形对话框宽度 ;
height 参数 : 图形对话框高度 ;
代码示例 :
% 生成 x 轴数据...:
% 生成 x 轴数据 , -10 ~ 10 , 步长 0.1
t = 0 : 0.1 : 2 * pi;
% x,y 轴变量
x = 3 * cos(t);
y = sin(t);
% 在第一行第一列绘制图形..., 坐标轴正常 normal
subplot(2,2,1);
plot(x,y);
axis normal
% 在第一行第二列绘制图形, 坐标轴方形 square
subplot(2,2,2);
plot...(x,y);
axis square
% 在第二行第一列绘制图形, 坐标轴 equal
subplot(2,2,3);
plot(x,y);
axis equal
% 在第二行第二列绘制图形, 坐标轴