dsp-0.1: Haskell Digital Signal ProcessingContentsIndex
DSP.Filter.FIR.FIR
Portabilityportable
Stabilityexperimental
Maintainerm.p.donadio@ieee.org
Description
Finite Impuse Response filtering functions
Synopsis
fir :: Num a => Array Int a -> [a] -> [a]
Documentation
fir
:: Num a
=> Array Int ah[n]
-> [a]x[n]
-> [a]y[n]

Implements the following function, which is a FIR filter

y[n] = sum(k=0,M) h[k]*x[n-k]

We implement the fir function with five helper functions, depending on the type of the filter. In the following functions, we use the O&S convention that m is the order of the filter, which is equal to the number of taps minus one.

Produced by Haddock version 0.8