1 %> @brief Feature subset grader that uses a statistical test
3 methods(Access=
protected)
5 function z = test(o, dd, idxs)
8 %> If @c
sgs is set, performs cross-validation loop based on @c subddd, otherwise used @c datasets to test.
9 function z = do_calculate_pairgrades(o, idxs)
11 if ~o.pvt_flag_pairwise
12 z = o.test(o.datasets, idxs);
14 for i = size(o.datasets, 1):-1:1
15 z(i, :) = o.test(o.datasets(i, :), idxs);
22 for i = 1:nd % Pairwise LOOP
27 for j = nreps:-1:1 % Cross-validation loop.
28 ztemp(1, :) = o.test(dd(j, :), idxs);
30 z(i, :) = ztemp/nreps; % Cross-validation average
39 o.classtitle = 'Test';
Base Sub-dataset Generation Specification (SGS) class.
Feature subset grader that uses a statistical test.
FSG - Feature Subset Grader.