subplot函數(shù)用于在一個(gè)圖像窗口中創(chuàng)建多個(gè)子圖,語法格式如下:
subplot(m,n,p)
其中,m表示子圖的行數(shù),n表示子圖的列數(shù),p表示當(dāng)前子圖的位置。
例如,如果想在一個(gè)圖像窗口中創(chuàng)建2行2列共4個(gè)子圖,并在第一個(gè)子圖中繪制數(shù)據(jù),可以這樣使用subplot函數(shù):
subplot(2,2,1)
plot(data)
接著可以繼續(xù)在其他子圖中繪制數(shù)據(jù),例如:
subplot(2,2,2)
plot(data2)
subplot(2,2,3)
plot(data3)
subplot(2,2,4)
plot(data4)
通過這種方式可以在一個(gè)圖像窗口中方便地顯示多個(gè)子圖,方便比較和分析不同數(shù)據(jù)之間的關(guān)系。