Member of the modeling and prediction class.
k = poly2rc(a)
[k, r0] = poly2rc(a, err)
Generates reflection coefficients from a prediction polynomial input.
| Name | Description |
| a | Specifies the coefficients of the prediction filter. a is a vector. |
| err | Specifies the prediction error. err is a real number. |
| Name | Description |
| k | Returns the reflection coefficients. k is a vector. |
| r0 | Returns the zero lag of the autocorrelation sequence. |
r = [1, 3, 2, 4];
n = 3;
[a, err, k] = levinson(r, n);
[k, r0] = poly2rc(a, err)