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

    function p= getptrs(nd);
%GETPTRS list of internal pointers
%
%  PTRS = GETPTRS(ND)

%  Copyright 2000-2004 The MathWorks, Inc. and Ford Global Technologies, Inc.


p=getptrs(nd.cgcontainer);
allp = nd.ptrlist;
for i=1:length(allp)
   p=[p, allp(i), getptrs(info(allp(i)))'];
end