matlab figure sub figures
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Image Analyst
el 29 de Nov. de 2013
Sure. Just call figure() instead of subplot().
figure;
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
2 comentarios
Image Analyst
el 30 de Nov. de 2013
If you created the code, you could create a callback such that when a user clicks on an image, it opens up full screen.
Ver también
Categorías
Más información sobre Data Exploration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!