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

    function out= comments(m,NewComments);
% MODEL/COMMENTS access method for model comments
%

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


if nargin==1
   out= m.Comments;
else
   m.Comments= NewComments;
   out= m;
end