dsp-0.2.5: Haskell Digital Signal Processing

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

DSP.Estimation.Spectral.MA

Description

This module contains one algorithm for MA parameter estimation. It is taken from Steven M. Kay, _Modern Spectral Estimation: Theory and Application_, which is one of the standard texts on the subject. When possible, variable conventions are the same in the code as they are found in the text.

Synopsis

Documentation

ma_durbin Source #

Arguments

:: (Ix a, Integral a, RealFloat b) 
=> Array a (Complex b)

x

-> a

q

-> a

l

-> (Array a (Complex b), b)

(a,rho)

Computes an MA(q) model estimate from x using the Durbin's method where l is the order of the AR process used in the algorithm