save multiple gui window in appdesigner
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I am using appdesigner, In the callback of "RUN" button I have called one .m file which is executing perfectly and it creates multiple graphs in different pop up windows.
I want to use "SAVE" button to save all the multiple popup windows in user specified path.
Any help is appreciated. Thanks
답변 (1개)
Adam Danz
2021년 7월 28일
- In the m-file, before creating the first figure, store a list of pre-existing figures. Hint: findobj(0,'type','figure')
- After creating the last figure, create a second list of all existing figures.
- Compare the two vectors of figure handles using ismember to get a list of all new figures generated while running the m-file.
- Use uigetdir to allow the user to select a directory, then loop through each figure and saveas().
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!