synthesizer-core-0.8.1.2: Audio signal processing coded in Haskell: Low level part
Synthesizer.Plain.Displacement
Contents
Description
http://en.wikipedia.org/wiki/Particle_displacement
Synopsis
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.
zipWith
mixMulti :: C v => [T v] -> T v Source #
Mix an arbitrary number of signals.
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.
distort :: (c -> a -> a) -> T c -> T a -> T a Source #
In Synthesizer.Basic.Distortion you find a collection of appropriate distortion functions.