www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/@mbcmodel/@linearmodelproperties/GetIncludedTerms.m

    function terms = GetIncludedTerms(obj)
%GETINCLUDEDTERMS Get a list of those terms that will be used to fit the model.
%
%   T = MODEL.PROPERTIES.GETINCLUDEDTERMS( )
%
% See also mbcmodel.linearmodelproperties.GetAllTerms,
% mbcmodel.linearmodelproperties.GetTermLabel

%   Copyright 2006 The MathWorks, Inc.


terms = obj.GetAllTerms();

% Now remove those with status set to 'Never'
status = obj.GetTermStatus();

terms( ismember(status, 'Never'), : ) = [];