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

Synthesizer.State.Noise

Description

Noise and random processes.

Synopsis

Documentation

white :: (C y, Random y) => T ySource

Deterministic white noise, uniformly distributed between -1 and 1. That is, variance is 1/3.

whiteGen :: (C y, Random y, RandomGen g) => g -> T ySource

whiteQuadraticBSplineGen :: (C y, Random y, RandomGen g) => g -> T ySource

Approximates normal distribution with variance 1 by a quadratic B-spline distribution.

randomPeeksSource

Arguments

:: (C y, Random y) 
=> T y

momentary densities, p means that there is about one peak in the time range of 1/p samples

-> T Bool

Every occurence of True represents a peak.

randomPeeksGen :: (C y, Random y, RandomGen g) => g -> T y -> T BoolSource

randomRs :: (C y, Random y, RandomGen g) => (y, y) -> g -> T ySource