Matlab App designer export figure
이전 댓글 표시


I want to export figure image. How can I export a figure in matlab app designer?
답변 (3개)
% File exchange
exportfig(app.UIAxes,"test")
% Standard matlab function
savefig(app.UIAxes,"test.fig")
% exportgraphics
exportgraphics(app.UIAxes,"test.png")
These are some of the ways you can export figure, try using one from FEX
댓글 수: 1
Kaan Öner
2023년 8월 7일
0 개 추천
댓글 수: 2
Walter Roberson
2023년 8월 7일
Did you install exportfig() from the File Exchange (or use Add-On Explorer) ? exportfig() is not built in to MATLAB.
Kaan Öner
2023년 8월 7일
카테고리
도움말 센터 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


