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

    function display( m )
%DISPLAY   Display command for XREGLOLIMOT objects

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



s = char( m );
disp( ' ' )
disp( [ inputname(1), ' = ' ] )
disp( ' ' )
for i = 1:size(s,1);
    disp( [ '   ', s(i,:) ] )
end
disp( ' ' )

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