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

    function display(A)
%DISPLAY Display the model in command window

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

isLoose = strcmp(get(0,'FormatSpacing'),'loose');
if isLoose
   disp(' ')
end
disp([inputname(1), ' = '])
A=char(A.mvModel,0);
b=blanks(size(A,1))';
disp([b b b A]);
if isLoose
   disp(' ')
end