How do i expand this figure so all graphs fit perfect
3 ビュー (過去 30 日間)
古いコメントを表示
0 件のコメント
採用された回答
Chad Greene
2014 年 11 月 12 日
Instead of using subplot(2,2,1), try this
figure
axes('position',[0 .5 .5 .5])
plot(1:10,1:10,'b')
axes('position',[.5 .5 .5 .5])
plot(1:10,1:10,'r')
axes('position',[0 0 .5 .5])
plot(1:10,1:10,'k')
axes('position',[.5 0 .5 .5])
plot(1:10,1:10,'m')
3 件のコメント
Chad Greene
2014 年 11 月 12 日
編集済み: Chad Greene
2014 年 11 月 12 日
Replace my plot lines with your imshow lines. And change your title lines to
title('my title','vert','top','backgroundcolor','white')
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!