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!


