IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
blmisc_rows_inliers.m
Go to the documentation of this file.
1 %> @brief Select inliers only.
2 %>
3 %> Discards all dataset rows whose class is <= -1, (outliers, refuse-to-decide, and refuse-to-cluster).
4 %>
5 %> @sa classnumbers
7  methods
8  function o = blmisc_rows_inliers()
9  o.classtitle = 'Inliers';
10  o.flag_params = 0;
11  end;
12  end;
13 
14  methods(Access=protected)
15  function data = do_use(o, data)
16  data = data_select_inliers(data);
17  end;
18  end;
19 end
20 
function data_select_inliers(in data)
Property classtitle
Class Title. Should have a descriptive name, as short as possible.
Definition: irobj.m:50
Select inliers only.
Base class for blocks that change a dataset row order.
Definition: blmisc_rows.m:2