www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgcontainer/getDependentPtrs.m

    function pDep= getDependentPtrs(ND)
%GETDEPENDENTPTRS list of dependent pointers 
%
% pDep= getDependentPtrs(obj)
%   A dependent pointer is a pointer to an object connected to the current 
%   which which belongs to another CAGE object 

% Copyright 2000-2004 The MathWorks, Inc. 

pd= getdata(ND);

if ~isempty(pd)
    pDep= getDependentPtrs(pd.info);
end