synthesizer-core-0.8.2: Audio signal processing coded in Haskell: Low level part

Safe HaskellNone
LanguageHaskell2010

Synthesizer.Plain.Filter.Delay.List

Synopsis

Documentation

modulated :: (C a, C v) => T a v -> Int -> [a] -> [v] -> [v] Source #

This is essentially different for constant interpolation, because this function "looks forward" whereas the other two variants "look backward". For the symmetric interpolation functions of linear and cubic interpolation, this does not really matter.

modulatedRev :: (C a, C v) => T a v -> Int -> [a] -> [v] -> [v] Source #