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