IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
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
6
classdef
blmisc_rows_inliers
<
blmisc_rows
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
data_select_inliers
function data_select_inliers(in data)
irobj::classtitle
Property classtitle
Class Title. Should have a descriptive name, as short as possible.
Definition:
irobj.m:50
blmisc_rows_inliers
Select inliers only.
Definition:
blmisc_rows_inliers.m:6
blmisc_rows
Base class for blocks that change a dataset row order.
Definition:
blmisc_rows.m:2
m
classes
block
blmisc
blmisc_rows_inliers.m
Generated on Tue May 19 2015 20:46:04 for IRootLab by
1.8.9.1