Matlab App designer export figure
Mostrar comentarios más antiguos


I want to export figure image. How can I export a figure in matlab app designer?
Respuestas (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 comentario
Kaan Öner
el 7 de Ag. de 2023
0 votos
2 comentarios
Walter Roberson
el 7 de Ag. de 2023
Did you install exportfig() from the File Exchange (or use Add-On Explorer) ? exportfig() is not built in to MATLAB.
Kaan Öner
el 7 de Ag. de 2023
Kaan Öner
el 7 de Ag. de 2023
0 votos
Categorías
Más información sobre Printing and Saving en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


