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

    function pDep= getDependentPtrs(T)
%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-2005 The MathWorks, Inc.

pDep= unique([T.Tables T.FillExpressions T.FillMaskExpressions T.GraphExpressions]);
if ~isempty(pDep)
    pDep= pDep(~isnull(pDep));
end