matlab figure sub figures
显示 更早的评论
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
回答(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 个评论
sohaib atif
2013-11-29
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!