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

    function str=texview(m)
% MODEL/TEXVIEW TeX string for displaying model 

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



% --------------------------------------------
% Call methods that supply all the information
Expr =    str_code(m,1);
fX =      str_func(m,1);
ytrans =  str_yinv(m,1);
chModel = char(m,1);
str = {'\bf{Coding}',Expr,...
      '\bf{Equation}',fX,chModel,...
      '\bf{Y Transformation}',ytrans};