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

    function y=fbnleval(U,b,x);
% MODEL/FBNLEVAL evaluate function with parameters nonlinear b and inputs x
% 
% y=fbnleval(U,b,x);
% This function can be used with numjac

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



U= nlupdate(U,b);
y= eval(U,x);