Filter löschen
Filter löschen

How to plot single axes handles from a GUI?

1 Ansicht (letzte 30 Tage)
Kobi
Kobi am 12 Feb. 2020
Bearbeitet: Walter Roberson am 12 Feb. 2020
in my program i have
handles.axes_big
which i would like to open in a seperate figure with all of its properties.
all figure data are inside.
how can it be done?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 12 Feb. 2020
Bearbeitet: Walter Roberson am 12 Feb. 2020
newfig = figure() ;
copyobj(handles.axes_big, newfig);
Note: I do not promise that this will copy colorbar or legend information as those are not really part of the axes.
Also some axes that look like plain drawings turn out to have behavior associated with them that is attached to the figure.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte


Version

R2015b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by