1 %> @brief Decimation - makes averages of adjacent features
4 %> = 2. Average every (factor) features. Curves will have floor(original_size*1/factor) number of point after averaging
10 o.classtitle = 'Average features';
15 methods(Access=protected)
16 function data = do_use(o, data)
17 data.fea_x =
decim(data.fea_x, o.factor);
18 data.X =
decim(data.X, o.factor);
Decimation - makes averages of adjacent features.
function decim(in X, in r)
Decimation occurs by averaging every r columns of X.
Feature Construction (FCon) base class.