Matlab App designer export figure
Afficher commentaires plus anciens


I want to export figure image. How can I export a figure in matlab app designer?
Réponses (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 commentaire
Kaan Öner
le 7 Août 2023
0 votes
2 commentaires
Walter Roberson
le 7 Août 2023
Did you install exportfig() from the File Exchange (or use Add-On Explorer) ? exportfig() is not built in to MATLAB.
Kaan Öner
le 7 Août 2023
Kaan Öner
le 7 Août 2023
0 votes
Catégories
En savoir plus sur Printing and Saving dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


