matlab figure sub figures
3 ビュー (過去 30 日間)
古いコメントを表示
hej every one i have again a problem, I have 51 sub figures in one matlab figure is it possible to maximum these figure one by one or as a whole figure
0 件のコメント
回答 (1 件)
Image Analyst
2013 年 11 月 29 日
Sure. Just call figure() instead of subplot().
figure;
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
2 件のコメント
Image Analyst
2013 年 11 月 30 日
If you created the code, you could create a callback such that when a user clicks on an image, it opens up full screen.
参考
カテゴリ
Help Center および File Exchange で Data Exploration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!