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

    function y = yinv(m,y)
%YINV perform inverse Y transformation on model
%
% y= yinv(m,y)

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

if ~m.TransBS
   y= m.Output.doInverse(y);   
end