How can I save UIAxes as an image when button is pushed in app designer?
32 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I save UIAxes as an image when button is pushed in app designer?
newfigure = figure;
copyobj(app.UIAxes, newfigure);
hgsave(newfigure, 'testFIgure.fig');
I tried this but it gives me an error.
3 Commenti
Risposte (2)
Adam Danz
il 24 Set 2020
The code you shared shows that you're exporting the children of a UIAxes onto a regular axis.
That can be done with copyUIAxes() from the file exchange, even on Matlab releases prior to 2020. That function avoids the problem of disappearing axis labels.
2 Commenti
zsh fardi
il 5 Gen 2022
Modificato: Image Analyst
il 5 Gen 2022
Hi. Why is copyUIAxes() undefined in Matlab R2021a?
Image Analyst
il 5 Gen 2022
Modificato: Image Analyst
il 5 Gen 2022
@zsh fardi Because it's a third party function written by Adam. It's not part of base MATLAB. You have to download it, and if it's not in your current folder, use the "Set Path" button on the Home tab of the tool ribbon to add its folder to the path.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!