Matlab App designer export figure
Show older comments


I want to export figure image. How can I export a figure in matlab app designer?
Answers (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 Comment
Kaan Öner
on 7 Aug 2023
0 votes
2 Comments
Walter Roberson
on 7 Aug 2023
Did you install exportfig() from the File Exchange (or use Add-On Explorer) ? exportfig() is not built in to MATLAB.
Kaan Öner
on 7 Aug 2023
Kaan Öner
on 7 Aug 2023
0 votes
Categories
Find more on Printing and Saving in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

