www.gusucode.com > mbctools 工具箱 matlab 源码程序 > mbctools/@mdevmlerf/BestModelString.m

    function s= BestModelString(mdev);
% MDEVMLERF/BESTMODELSTRING message about best mle rf model
%
% s= BestModelString(mdev);

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



if status(mdev)==1
	s= 'MLE Response Feature requires updating';
else
	s= [name(mdev) ' is a MLE Response Feature for ',peval('name',Parent(mdev))];
end