Member of the modeling and prediction class.
a = levinson(r)
a = levinson(r, n)
[a, err, k] = levinson(r)
[a, err, k] = levinson(r, n)
Uses Levinson-Durbin recursion to find the coefficients of a p-th all-pole IIR filter.
| Name | Description |
| r | Specifies the deterministic autocorrelation sequence. If r is a matrix, LabVIEW determines the backward filter coefficients column by column. |
| n | Specifies the order of the backward filter coefficients. The default is length(r) - 1. |
| Name | Description |
| a | Returns the backward filter coefficients. |
| err | Returns the prediction error. |
| k | Returns the reflection coefficients. |
r = [1, 3, 2, 4];
n = 3;
[a, err, k] = levinson(r, n)