www.gusucode.com > mbcmodels 工具箱 matlab 源码程序 > mbcmodels/@xregfittree/getparent.m

    function parent = getparent( Tree, child )
%XREGFITTREE/GETPARENT Get the parent of a given child
%  GETPARENT(T,CHILD) returns the parent panel of the given CHILD panel 
%
%  See also XREGFITTREE.

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


parent = Tree.Parent(child);

%------------------------------------------------------------------------------|
% EOF
%------------------------------------------------------------------------------|