Linear Prediction Article Index for
Linear
Website Links For
Linear
 

Information About

Linear Prediction




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

:\widehat{x}(n) = -\sum_{i=1}^p a_i x(n-i)\,

where \widehat{x}(n) is the predicted signal value, x(n-i) the previous observed values, and a_i the predictor coefficients. The error generated by this estimate is

:e(n) = x(n) - \widehat{x}(n)\,

where x_n 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 parameters a_i are chosen.

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

  Where <math></math> Is A Suitable Chosen Vector "http://wwwinformationdelightinfo/encyclopedia/entry/norm_(mathematics)" class="copylinks">Norm


where the index ''i'' ranges from 0 to ''p'', and ''R'' is a (''p'' + 1) × (''p'' + 1) matrix.

Optimisation of the parameters is a wide topic and a large number of other approaches have been proposed.

Still, the autocorrelation method is the most common and it is used, for example, for Speech Coding in the GSM standard.

Solution of the matrix equation ''Ra'' = ''r'' is computationally a relatively expensive process. The Gauss Algorithm for matrix inversion is probably the oldest solution but this approach does not efficiently use the symmetry of ''R'' and ''r''. A faster algorithm is the Levinson Recursion proposed by Norman Levinson in 1947, which recursively calculates the solution. Later, Delsarte et al. proposed an improvement to this algorithm called the Split Levinson Recursion which requires about half the number of multiplications and divisions. It uses a special symmetrical property of parameter vectors on subsequent recursion levels.


SEE ALSO