Safe Haskell | None |
---|---|
Language | Haskell2010 |
Mixing
mix :: C v => T v -> T v -> T v Source #
Mix two signals.
In opposition to zipWith
the result has the length of the longer signal.
raise :: C v => v -> T v -> T v Source #
Add a number to all of the signal values. This is useful for adjusting the center of a modulation.
Distortion
distort :: (c -> a -> a) -> T c -> T a -> T a Source #
In Synthesizer.Basic.Distortion you find a collection of appropriate distortion functions.