Convert autocorrelation sequence to prediction polynomial
a = ac2poly(r)
[a,efinal] = ac2poly(r)
a = ac2poly(r)
finds
the linear prediction FIR filter polynomial, a
,
corresponding to the autocorrelation sequence r
. a
is
the same length as r
, and a(1)
= 1
. The polynomial
represents the coefficients of a prediction filter that outputs a
signal with autocorrelation sequence approximately equal to r
.
[a,efinal] = ac2poly(r)
returns
the final prediction error, efinal
, determined
by running the filter for length(r)
steps.
You can apply this function to real or complex data.
[1] Kay, Steven M. Modern Spectral Estimation. Englewood Cliffs, NJ: Prentice-Hall, 1988.