Owning Class: modeling and prediction
Requires: MathScript RT Module
a = rc_to_poly(k)
[a, err] = rc_to_poly(k, r0)
Legacy Name: rc2poly
Generates a prediction polynomial from reflection coefficients.
| Name | Description |
|---|---|
| k | Specifies the reflection coefficients. |
| r0 | Specifies the zero lag of the autocorrelation sequence. |
| Name | Description |
|---|---|
| a | Returns the coefficients of the prediction polynomial. |
| err | Returns the prediction error. |
r = [1, 3, 2, 4];
n = 3;
[a, err, k] = levinson(r, n);
[aa, ee] = rc_to_poly(k, r(1))