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

    function RFlist = ReconstructSets(RF)
%RECONSTRUCTSETS list of subsets of response features that can be used to reconstruct the local model
%
% RFlist = ReconstructSets(RF);
%   RFlist is a cell array of mbcmodel.responsefeatures. Each element of
%   RFlist can be used to reconstruct the local model from response feature values. 

% Copyright 2007 The MathWorks, Inc.


L = RF.Object;
selrf = SelectRF(L);

RFlist = cell(1,size(selrf,1));
for i=1:length(RFlist)
    Lsel = SelFeat(L,selrf(i,:));
    RF.Object = Lsel;
    RFlist{i}= RF;
end