필터 지우기
필터 지우기

How to plot single axes handles from a GUI?

조회 수: 1 (최근 30일)
Kobi
Kobi 2020년 2월 12일
편집: Walter Roberson 2020년 2월 12일
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?

채택된 답변

Walter Roberson
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개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by