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

Synthesizer.Generic.Analysis

Contents

Synopsis

Notions of volume

volumeMaximum :: (C y, Read sig y) => sig y -> ySource

Volume based on Manhattan norm.

volumeEuclidean :: (C y, Read sig y) => sig y -> ySource

Volume based on Energy norm.

volumeEuclideanSqr :: (C y, Read sig y) => sig y -> ySource

volumeSum :: (C y, C y, Read sig y) => sig y -> ySource

Volume based on Sum norm.

volumeVectorMaximum :: (C y yv, Ord y, Read sig yv) => sig yv -> ySource

Volume based on Manhattan norm.

volumeVectorEuclidean :: (C y, C y yv, Read sig yv) => sig yv -> ySource

Volume based on Energy norm.

volumeVectorEuclideanSqr :: (C y, Sqr y yv, Read sig yv) => sig yv -> ySource

volumeVectorSum :: (C y yv, C y, Read sig yv) => sig yv -> ySource

Volume based on Sum norm.

bounds :: (Ord y, Read sig y) => sig y -> (y, y)Source

Compute minimum and maximum value of the stream the efficient way. Input list must be non-empty and finite.

Miscellaneous

directCurrentOffset :: (C y, Read sig y) => sig y -> ySource

Requires finite length. This is identical to the arithmetic mean.

scalarProduct :: (C y, Read sig y) => sig y -> sig y -> ySource

centroid :: (C y, Read sig y) => sig y -> ySource

directCurrentOffset must be non-zero.

average :: (C y, Read sig y) => sig y -> ySource

rectify :: (C y, Transform sig y) => sig y -> sig ySource

zeros :: (Ord y, C y, Transform sig y Bool) => sig y -> sig BoolSource

Detects zeros (sign changes) in a signal. This can be used as a simple measure of the portion of high frequencies or noise in the signal. It ca be used as voiced/unvoiced detector in a vocoder.

zeros x !! n is True if and only if (x !! n >= 0) /= (x !! (n+1) >= 0). The result will be one value shorter than the input.

flipFlopHysteresis :: (Ord y, Transform sig y Bool) => (y, y) -> Bool -> sig y -> sig BoolSource

Detect thresholds with a hysteresis.