2016-02-19 44 views
0

我有一個簡單而直接的問題: 我可以在Matlab中放大或縮小(水平和垂直)子圖,以使圖看起來更大更清晰嗎?在Matlab中使用縮尺子圖

如果是,然後請讓我知道。

感謝

figure() 
subplot(2,2,1) 
subplot(2,2,2) 
subplot(2,2,3) 
subplot(2,2,4) 

enter image description here

+0

確實[這個提問/回答(http://stackoverflow.com/問題/ 24125099/how-can-i-set-subplot-size-in-matlab-figure)help? – hbaderts

+0

使用FileExchange中的'subaxis'。看看這個:http://stackoverflow.com/questions/6685092/how-to-reduce-the-borders-around-subplots-in-matlab –

回答

0

嘗試使用這樣的:

figure, 
subplot(4,4,[1:2 5:6]) 
plot() 
subplot(4,4,[3:4 7:8]) 
plot() 
subplot(4,4,[9:10 13:14]) 
plot() 
subplot(4,4,[11:12 15:16]) 
plot() 

格爾茨