Changing Axis in a GUI and Saving a figure in a GUI
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi everyone I am having a bit of a problem with a GUI I am writing. The GUI plots a selected set of data from a list and has four editable text boxes that allows you to change the axes by changing a vector. The changing of the axes works well except when I change the axes it deletes the the plot in the axes window and I cannot plot new information on it. Any suggestions?
Second, I can not figure out how to take the axes and save it as a .jpeg. I think I should be using save(handle,'filename.jpg') I just can not figure out the correct handle to use.
Thanks!
0 Commenti
Risposta accettata
Hugo
il 12 Giu 2013
Dear Rhys Taus,
I might be wrong, but I think the problem is that you might be rewriting the axes instead of modifying them. To be explicit: Are you modifying the axes properties using the command set()?
Do the following:
1) When you define the axes with the command axes(... , ....), write instead:
haxes=axes(... , ...);
haxes is the handle of the axes you defined.
2) When you want to modify the properties of the axes, use:
set(haxes, propertyname , newvalue)
where propertyname and newvalue depend on what you want to modify. This command should not change what is plot, unless of course you change the properties 'XData', 'YData' or the alike.
3) For saving the axes, use:
saveas(haxes, 'filename.jpg', 'jpg');
Hope this helps. Best regards,
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!