
MOVING AVG
----------

Computes the moving average of the input signal i.e the average of the last N samples.

Valid range for N (Window Size) is 2 to 20000.

By enabling the (unexposed) Abs option, the moving average will be computed on the absolute value of the last N samples

To compute the SUM of the last N samples instead, simply multiply the result by the window length


NOTE: the moving average is a comb filter with dips at every integer multiple of sample rate / N

WARNING: WINDOW SIZE IS NOT MEANT TO BE MODULATED
