Member of the modeling and prediction class.
[a, e] = schurrc(r)
Generates a sequence of reflection coefficients from an autocorrelation sequence input using Schur's algorithm.
| Name | Description |
| r | Specifies the autocorrelation sequence. r is a vector. |
| Name | Description |
| a | Returns the reflection coefficients. a is a vector. |
| e | Returns the variance of the prediction error. e is a scalar. |
x = xcorr([1 2 3 2 1], 'unbiased');
a = schurrc(x(5:9))