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

    function y = evalsingle( m, x )
%XREGMODEL/EVALSINGLE   Evaluation of a model at a single point
%   EVALSINGLE(M,X) is the value of the model M evaluated at the point 
%   specified by X.
%
%   See also XREGMODEL/EVAL.

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


y = eval( m, x );

return

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