Plotting figures using figure handles
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hello guys, i need your help in solving the following problem: i have an open figure and i have done the following:
fig = gcf;
now i have closed the figure and i want to plot what is inside fig. Is this possible without saving the figure in .fig file? If yes then how can it be done?
Thanks in advance.
0 Commenti
Risposta accettata
dpb
il 8 Set 2015
Once it's closed, it's gone and the handle, despite the variable still holding the value, is bogus.
Only replotting from the raw data or, as you say, saving to a file will preserve it for posterity.
1 Commento
dpb
il 9 Set 2015
I suppose an enhancement request could be made for a handle to become a full-fledged "deep" copy but I doubt it would be considered. An alternative would be an encapsulated function that does such automagically that can be done with effort via findobj and copyobj
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects 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!