Linear prediction

From HandWiki
Short description: Mathematical operation that predicts future values of a discrete-time signal

Linear prediction is a mathematical operation where future values of a discrete-time signal are estimated as a linear function of previous samples.

In digital signal processing, linear prediction is often called linear predictive coding (LPC) and can thus be viewed as a subset of filter theory. In system analysis, a subfield of mathematics, linear prediction can be viewed as a part of mathematical modelling or optimization.

The prediction model

The most common representation is

[math]\displaystyle{ \widehat{x}(n) = \sum_{i=1}^p a_i x(n-i)\, }[/math]

where [math]\displaystyle{ \widehat{x}(n) }[/math] is the predicted signal value, [math]\displaystyle{ x(n-i) }[/math] the previous observed values, with [math]\displaystyle{ p \leq n }[/math], and [math]\displaystyle{ a_i }[/math] the predictor coefficients. The error generated by this estimate is

[math]\displaystyle{ e(n) = x(n) - \widehat{x}(n)\, }[/math]

where [math]\displaystyle{ x(n) }[/math] is the true signal value.

These equations are valid for all types of (one-dimensional) linear prediction. The differences are found in the way the predictor coefficients [math]\displaystyle{ a_i }[/math] are chosen.

For multi-dimensional signals the error metric is often defined as

[math]\displaystyle{ e(n) = \|x(n) - \widehat{x}(n)\|\, }[/math]

where [math]\displaystyle{ \|\cdot\| }[/math] is a suitable chosen vector norm. Predictions such as [math]\displaystyle{ \widehat{x}(n) }[/math] are routinely used within Kalman filters and smoothers to estimate current and past signal values, respectively, from noisy measurements.[1]

Estimating the parameters

The most common choice in optimization of parameters [math]\displaystyle{ a_i }[/math] is the root mean square criterion which is also called the autocorrelation criterion. In this method we minimize the expected value of the squared error [math]\displaystyle{ E[e^2(n)] }[/math], which yields the equation

[math]\displaystyle{ \sum_{i=1}^p a_i R(j-i) = R(j), }[/math]

for 1 ≤ jp, where R is the autocorrelation of signal xn, defined as

[math]\displaystyle{ \ R(i) = E\{x(n)x(n-i)\}\, }[/math],

and E is the expected value. In the multi-dimensional case this corresponds to minimizing the L2 norm.

The above equations are called the normal equations or Yule-Walker equations. In matrix form the equations can be equivalently written as

[math]\displaystyle{ \mathbf{R A} = \mathbf{r} }[/math]

where the autocorrelation matrix [math]\displaystyle{ \mathbf{R} }[/math] is a symmetric, [math]\displaystyle{ p \times p }[/math] Toeplitz matrix with elements [math]\displaystyle{ r_{ij} = R(i-j), 0 \leq i, j\lt p }[/math], the vector [math]\displaystyle{ \mathbf{r} }[/math] is the autocorrelation vector [math]\displaystyle{ r_j = R(j), 0\lt j \leq p }[/math], and [math]\displaystyle{ \mathbf{A} = [a_1, a_2, \,\cdots\, , a_{p-1}, a_p] }[/math], the parameter vector.

Another, more general, approach is to minimize the sum of squares of the errors defined in the form

[math]\displaystyle{ e(n) = x(n) - \widehat{x}(n) = x(n) - \sum_{i=1}^p a_i x(n-i) = - \sum_{i=0}^p a_i x(n-i) }[/math]

where the optimisation problem searching over all [math]\displaystyle{ a_i }[/math] must now be constrained with [math]\displaystyle{ a_0=-1 }[/math].

On the other hand, if the mean square prediction error is constrained to be unity and the prediction error equation is included on top of the normal equations, the augmented set of equations is obtained as

[math]\displaystyle{ \ \mathbf{R A} = [1, 0, ... , 0]^{\mathrm{T}} }[/math]

where the index [math]\displaystyle{ i }[/math] ranges from 0 to [math]\displaystyle{ p }[/math], and [math]\displaystyle{ \mathbf{R} }[/math] is a [math]\displaystyle{ (p+1)\times(p+1) }[/math] matrix.

Specification of the parameters of the linear predictor is a wide topic and a large number of other approaches have been proposed. In fact, the autocorrelation method is the most common[2] and it is used, for example, for speech coding in the GSM standard.

Solution of the matrix equation [math]\displaystyle{ \mathbf{R A} = \mathbf{r} }[/math] is computationally a relatively expensive process. The Gaussian elimination for matrix inversion is probably the oldest solution but this approach does not efficiently use the symmetry of [math]\displaystyle{ \mathbf{R} }[/math]. A faster algorithm is the Levinson recursion proposed by Norman Levinson in 1947, which recursively calculates the solution.[citation needed] In particular, the autocorrelation equations above may be more efficiently solved by the Durbin algorithm.[3]

In 1986, Philippe Delsarte and Y.V. Genin proposed an improvement to this algorithm called the split Levinson recursion, which requires about half the number of multiplications and divisions.[4] It uses a special symmetrical property of parameter vectors on subsequent recursion levels. That is, calculations for the optimal predictor containing [math]\displaystyle{ p }[/math] terms make use of similar calculations for the optimal predictor containing [math]\displaystyle{ p-1 }[/math] terms.

Another way of identifying model parameters is to iteratively calculate state estimates using Kalman filters and obtaining maximum likelihood estimates within expectation–maximization algorithms.

For equally-spaced values, a polynomial interpolation is a linear combination of the known values. If the discrete time signal is estimated to obey a polynomial of degree [math]\displaystyle{ p-1, }[/math] then the predictor coefficients [math]\displaystyle{ a_i }[/math] are given by the corresponding row of the triangle of binomial transform coefficients. This estimate might be suitable for a slowly varying signal with low noise. The predictions for the first few values of [math]\displaystyle{ p }[/math] are

[math]\displaystyle{ \begin{array}{lcl} p=1 & : & \widehat{x}(n) = 1x(n-1)\\ p=2 & : & \widehat{x}(n) = 2x(n-1) - 1x(n-2) \\ p=3 & : & \widehat{x}(n) = 3x(n-1) - 3x(n-2) + 1x(n-3)\\ p=4 & : & \widehat{x}(n) = 4x(n-1) - 6x(n-2) + 4x(n-3) - 1x(n-4)\\ \end{array} }[/math]

See also

References


Further reading

  • Hayes, M. H. (1996). Statistical Digital Signal Processing and Modeling. New York: J. Wiley & Sons. ISBN 978-0471594314. 
  • Levinson, N. (1947). "The Wiener RMS (root mean square) error criterion in filter design and prediction". Journal of Mathematics and Physics 25 (4): 261–278. doi:10.1002/sapm1946251261. 
  • Makhoul, J. (1975). "Linear prediction: A tutorial review". Proceedings of the IEEE 63 (5): 561–580. doi:10.1109/PROC.1975.9792. 
  • Yule, G. U. (1927). "On a Method of Investigating Periodicities in Disturbed Series, with Special Reference to Wolfer's Sunspot Numbers". Phil. Trans. Roy. Soc. A 226 (636–646): 267–298. doi:10.1098/rsta.1927.0007. 

External links