dsp-0.2.4: Haskell Digital Signal Processing

Copyright(c) Matthew Donadio 2003
LicenseGPL
Maintainerm.p.donadio@ieee.org
Stabilityexperimental
Portabilityportable
Safe HaskellSafe
LanguageHaskell98

DSP.Filter.IIR.Cookbook

Description

Cookbook formulae for audio EQ biquad filter coefficients by Robert Bristow-Johnson robert@wavemechanics.com

http://www.harmony-central.com/Computer/Programming/Audio-EQ-Cookbook.txt

Documentation

lpf :: Floating a => a -> a -> [a] -> [a] #

hpf :: Floating a => a -> a -> [a] -> [a] #

bpf_csg :: Floating a => a -> a -> [a] -> [a] #

bpf_cpg :: Floating a => a -> a -> [a] -> [a] #

notch :: Floating a => a -> a -> [a] -> [a] #

apf :: Floating a => a -> a -> [a] -> [a] #

peakingEQ :: Floating a => a -> a -> a -> [a] -> [a] #

lowShelf :: Floating a => a -> a -> a -> [a] -> [a] #

highShelf :: Floating a => a -> a -> a -> [a] -> [a] #