1 %> @brief Simple differentiation
using MATLAB @c diff() function
6 %> =1. Differentiation order
12 o.classtitle = 'Differentiation';
17 methods(Access=protected)
18 function data = do_use(o, data)
19 data.fea_x = data.fea_x(o.order+1:end);
20 data.X = diff(data.X, o.order, 2);
Pre-processing block base class.
Simple differentiation using MATLAB diff() function.