Matlab App designer export figure
Mostra commenti meno recenti


I want to export figure image. How can I export a figure in matlab app designer?
Risposte (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 Commento
Kaan Öner
il 7 Ago 2023
0 voti
2 Commenti
Walter Roberson
il 7 Ago 2023
Did you install exportfig() from the File Exchange (or use Add-On Explorer) ? exportfig() is not built in to MATLAB.
Kaan Öner
il 7 Ago 2023
Kaan Öner
il 7 Ago 2023
0 voti
Categorie
Scopri di più su Printing and Saving in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


