How to plot single axes handles from a GUI?
4 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
Walter Roberson
2020 年 2 月 12 日
編集済み: Walter Roberson
2020 年 2 月 12 日
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.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!