1 %> @brief Estimation Aggregator - Linear Combination of datasets
4 %> Weights of each dataset
9 o.classtitle = 'Dataset-Linear';
14 methods(Access=protected)
16 function out = do_use(o, dd)
17 dd = o.apply_threshold(dd);
19 out = dd(1).copy_emptyrows();
20 out = out.copy_from_data(dd(1));
23 X = zeros(dd(1).no, dd(1).nf);
25 weiyi = ones(1, numel(dd));
29 weiyi = weiyi/sum(weiyi);
33 X = X+dd(i).X*weiyi(i);
Estimation Aggregator - combines estimato objects together.
Estimation Aggregator - Linear Combination of datasets.