smoothList

Math.smoothList(datalist, degree=10)

Smooth a list of numbers by averaging ‘degree’ samples.

This reduces the length of the data set by (degree-1) samples.

:param datalist : data set :type datalist : list of float

:param degree : width of smoothing rectangle in number of samples :type degree : int

Returns

list of smoothed data