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

Safe HaskellNone
LanguageHaskell2010

Synthesizer.Generic.Filter.Delay

Synopsis

Documentation

static :: (C y, Write sig y) => Int -> sig y -> sig y Source #

staticPad :: Write sig y => y -> Int -> sig y -> sig y Source #

staticPos :: (C y, Write sig y) => Int -> sig y -> sig y Source #

staticNeg :: Write sig y => Int -> sig y -> sig y Source #

modulated :: (C t, C y, Read sig t, Transform sig t, Transform sig y, Write sig y) => T t y -> Int -> sig t -> sig y -> sig y 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.