Resize subplot to whole figure window
14 ビュー (過去 30 日間)
古いコメントを表示
Christopher Rock
2019 年 5 月 9 日
回答済み: Stephane Dauvillier
2019 年 5 月 9 日
I've plotted a figure as a subplot by mistake, and I want to move it to its own figure window without re-plotting it. When I set the OuterPosition to [0 0 1 1], the axes moves to a different position to if I'd just plotted it to a new figure, with less space at the right and bottom. How do I get the default position? (MATLAB 2016b)
subplot(1,2,1)
plot(1:5)
set(gca,'OuterPosition',[0 0 1 1])
0 件のコメント
採用された回答
Stephane Dauvillier
2019 年 5 月 9 日
Try this one
subplot(1,1,1,gca)
It will transform the gca axe into a subplot(1,1,1) axes
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!