用subplot(m,n,p)或者subplot(mnp)
在你的这个情况中p=4,也就是总共4张图;m是你想要的行数,n是你想要的列数。
例如你要把四个图摆成“田”,那就是
subplot(2,2,1);plot(x1,y1);
subplot(2,2,2);plot(y2,x2);
subplot(2,2,3);plot(y3,x3);
subplot(2,2,4);plot(y4,x4);
或者你想把四张图摆成一列,那就是
subplot(4,1,1);plot(x1,y1);
subplot(4,1,2);plot(y2,x2);
subplot(4,1,3);plot(y3,x3);
subplot(4,1,4);plot(y4,x4);