1 %> @brief Savitsky-Golay (SG) Differentiation
3 %> See also:
diff_sg.m, uip_pre_diff_sg.m
6 %> =1. Differentiation order.
8 %> =2. Polynomial order.
10 %> =9. Number of coefficients of filter.
17 o.classtitle = 'Differentiation SG';
22 methods(Access=protected)
23 function data = do_use(o, data)
24 [data.X, data.fea_x] =
diff_sg(data.X, data.fea_x, o.order, o.porder, o.ncoeff);
Savitsky-Golay (SG) Differentiation.
Pre-processing block base class.
function diff_sg(in X, in x, in order, in porder, in ncoeff)