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에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!