synthesizer-0.2.0.1: Audio signal processing coded in HaskellSource codeContentsIndex
Synthesizer.Plain.Filter.Recursive.MovingAverage
Portabilityrequires multi-parameter type classes
Stabilityprovisional
Maintainersynthesizer@henning-thielemann.de
Description
Synopsis
sumsStaticInt :: C v => Int -> T v -> T v
modulatedFrac :: (C a, C a v) => Int -> T a -> T v -> T v
Documentation
sumsStaticInt :: C v => Int -> T v -> T vSource

Like Synthesizer.Plain.Filter.NonRecursive.sums but in a recursive form. This needs only linear time (independent of the window size) but may accumulate rounding errors.

ys = xs * (1,0,0,0,-1) / (1,-1)
ys * (1,-1) = xs * (1,0,0,0,-1)
ys = xs * (1,0,0,0,-1) + ys * (0,1)
modulatedFrac :: (C a, C a v) => Int -> T a -> T v -> T vSource
Produced by Haddock version 2.4.2