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

    function L= compress(L,EvalMode)
%COMPRESS reduce amount of information stored in model
%
% L= compress(L)

% Copyright 2005-2009 The MathWorks, Inc. and Ford Global Technologies, Inc.

if nargin<2
    EvalMode = 0;
end
% remove Store
L.Store = [];
L.xregmodel = compress(L.xregmodel,EvalMode);