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

    function [m,OK]= gui_fitoptions(m,varargin);
%GUI_FITOPTIONS

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



if isa(m.om,'xregoptmgr')
	[m.om,OK] = gui_setup(m.om,'figure',{'expanded',1,'title','Radial Basis Function Options','topname', 'Training algorithm'},m,varargin{:});
else
	errordlg('No fitting options are available for this model','Fit Options','modal');
	OK=0;
end