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

    function [pNode,pData,pDep]= getConnections(DD)
%GETCONNECTIONS get connections for data dictionary
%
% [pNode,pData,pDep]= getConnections(N)

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

pData= listptrs(DD)';
pNode= mbcpointer(size(pData));

if ~isempty(pData)
    pDep= pveceval(pData,@getDependentPtrs);
else
    pDep= {};
end