IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
fcon_mea_mean.m
Go to the documentation of this file.
1 %> @brief mean
3  methods
4  function o = fcon_mea_mean(o)
5  o.classtitle = 'Mean';
6  o.flag_params = 0;
7  end;
8  end;
9 
10  methods(Access=protected)
11  function data = do_use(o, data)
12  data.fea_x = 1;
13  data.X = mean(data.X, 2);
14  end;
15  end;
16 end
Measure: calculates one scalar per dataset row.
Definition: fcon_mea.m:2