IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
fext.m
Go to the documentation of this file.
1 %> @brief Feature Extraction (Fext) base class
2 %>
3 %> Feature Extraction has its @ref flag_train_inliers_only set to true.
4 classdef fext < block
5  methods
6  function o = fext(o)
7  o.classtitle = 'Feature Extraction';
8  o.color = [0, 179, 116]/255;
9  o.flag_train_inliers_only = 1;
10  end;
11  end;
12 end
Feature Extraction (Fext) base class.
Definition: fext.m:4
Base Block class.
Definition: block.m:2