Matlab App designer export figure
Ältere Kommentare anzeigen


I want to export figure image. How can I export a figure in matlab app designer?
Antworten (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 Kommentar
Kaan Öner
am 7 Aug. 2023
0 Stimmen
2 Kommentare
Walter Roberson
am 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
am 7 Aug. 2023
Kaan Öner
am 7 Aug. 2023
0 Stimmen
Kategorien
Mehr zu Printing and Saving finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


