IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
blmisc_classlabels_hierarchy.m
Go to the documentation of this file.
1 %> @brief Select some given class levels.
2 %>
3 %> @sa uip_blmisc_classlabels_hierarchy.m, irdata
5  properties
6  hierarchy = [];
7  end;
8 
9  methods
10  function o = blmisc_classlabels_hierarchy(o)
11  o.classtitle = 'Select Class Levels';
12  end;
13  end;
14 
15  methods(Access=protected)
16  function data2 = do_use(o, data)
17  data2 = data_select_hierarchy(data, o.hierarchy);
18  end;
19  end;
20 end
21 
function data_select_hierarchy(in data, in hierarchy)
Dataset class.
Definition: irdata.m:30
Base class for blocks that change a dataset class labels.
Select some given class levels.