1,一个figure画多个子图:
figure(10) % define figure
subplot(2,2,1); % subplot(x,y,n)x表示显示的行数,y表示列数,n表示第几幅图片
plot(...);
subplot(2,2,2);
plot(...);
subplot(2,2,3);
plot(...);
subplot(2,2,4);
plot(...);
2,多个figure画多个子图:
figure(1); % 第一个子图
plot(...);
figure(2); % 第二个子图
plot(...);
figure(3);
plot(...);
figure(4);
plot(...);
本文介绍了使用Matlab进行绘图的两种方法:一种是在一个figure中绘制多个子图,通过subplot函数定义布局;另一种是在不同的figure中分别绘制独立的子图。
1万+





