subplot的用法
程序员文章站
2024-01-19 13:51:46
...
subplot命令用法举例
subplot命令就是给做出的多个图形分块一并显示出来
下面举例
%% y1
x=linspace(0,2*pi,100);
y1=sin(x);
subplot(2,2,1);
plot(x,y1);
axis([0 2*pi -1.2 1.2]);
grid on %网格线
%% y2
y2=sin(0.5*x);
subplot(2,2,2); %分块
plot(x,y2);
axis([0 2*pi -1.2 1.2]); %坐标范围
grid on
%% y3
y3=sin(1.5*x);
subplot(2,2,3);
plot(x,y3);
axis([0 2*pi -1.2 1.2]);
grid on
%% y4
y4=sin(2*x);
subplot(2,2,4);
plot(x,y4);
axis([0 2*pi -1.2 1.2]);
grid on
```![在这里插入图片描述](https://img-blog.csdnimg.cn/20210702184534948.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzUxMjIzMDg5,size_16,color_FFFFFF,t_70#pic_center)