📄 datachildren.m
字号:
function h = datachildren(parent)
%DATACHILDREN Handles to figure children that contain data.
% H = DATACHILDREN(FIG) returns the children in the figure
% that contain data and are suitable for manipulation via
% functions like ROTATE3D and ZOOM.
%
% This is a helper function for ROTATE3D and ZOOM.
% Copyright 1984-2002 The MathWorks, Inc.
% $Revision: 1.7 $ $Date: 2002/04/08 22:41:28 $
% Current implementation:
% Figure children that have an application data property
% called 'NonDataObject' are excluded.
h = get(parent,'children');
nondatachild = logical([]);
for i=length(h):-1:1
nondatachild(i) = isappdata(h(i),'NonDataObject');
end
h(nondatachild) = [];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -