IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
fsgt.m
Go to the documentation of this file.
1 %> @ingroup fsgt
2 %> FSGT - Feature Subset Grader, used by clssr_tree, Decision Tree classifier
3 %>
4 %> @sa clssr_tree
5 classdef fsgt < irobj
6 
7  properties(SetAccess=protected)
8  flag_pairwise = 0;
9  flag_univariate = 0;
10  grade;
11  %> Cell of matrices of @c irdata datasets
12  subddd;
13  %> Prepared.
14  flag_sgs;
15  end;
16 
17  methods
18  %> Abstract.
19  %>
20  %> @retval [grades, idx, threshold]
21  function [grades, idx, threshold] = test(o, X, classes)
22  grades = [];
23  idx = [];
24  threshold = [];
25  end;
26 
27  function o = fsgt(o)
28  o.classtitle = 'FSG Trees';
29  end;
30  end;
31 end
Dataset class.
Definition: irdata.m:30
Binary Decision Tree Classifier.
Definition: clssr_tree.m:4
Base class.
Definition: irobj.m:33
Definition: fsgt.m:5