matlab figure sub figures

2 次查看(过去 30 天)
sohaib atif
sohaib atif 2013-11-29
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
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
sohaib atif 2013-11-29
i dnt want to use any command in code i just want to zoom in after execution is there any method to see these sub figures because in one figure there are 51 small figures
Image Analyst
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 CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by