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!


