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

    function pDep = getDependentPtrs(obj)
%GETDEPENDENTPTRS List of dependent pointers 
%
%   PDEP = GETDEPENDENTPTRS(OBJ) returns a list of dependent pointers for
%   this item.  A dependent pointer is a pointer to an object connected to
%   the current which belongs to another CAGE object.

%   Copyright 2006 The MathWorks, Inc.

% Return all pointers this object currently holds
pDep = obj.pDataset(~isnull(obj.pDataset));