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

    function Val= getFitOpt(m,Prop)
% RBF/GETFITOPT

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



if nargin==1;
	Val= m.om;
else
	if strcmp(lower(Prop),'name')
		Val= getname(m.om);
    else
	    Val= get(m.om,Prop);
    end
end