matlab figure sub figures
2 次查看(过去 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 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!