Main Content

Autocorrelation LPC

Determine coefficients of Nth-order forward linear predictors

  • Autocorrelation LPC block

Libraries:
DSP System Toolbox / Estimation / Linear Prediction

Description

The Autocorrelation LPC block determines the coefficients of an N-step forward linear predictor for the time-series in each length-M input channel, u, by minimizing the prediction error in the least squares sense. A linear predictor is an FIR filter that predicts the next value in a sequence from the present and past inputs. This technique has applications in filter design, speech coding, spectral analysis, and system identification.

The Autocorrelation LPC block can output the prediction error for each channel as polynomial coefficients, reflection coefficients, or both. The block can also output the prediction error power for each channel.

Ports

Input

expand all

Specify the input u as an unoriented vector, column vector, or a matrix. Row vectors are not valid inputs. The block treats all M-by-N matrix inputs as N channels of length M.

Data Types: single | double

Output

expand all

Polynomial coefficients generated when you set the Output(s) parameter to A or A and K. For each input channel, port A outputs an (N+1)-by-1 column vector a = [1 a2a3 ... aN+1]T, containing the coefficients of an Nth-order moving average (MA) linear process that predicts the next value, ûM+1, in the input time-series.

u^M+1=(a2uM)(a3uM1)...(aN+1uMN+1)

Dependencies

To enable port A, set Output(s) to A or A and K.

Data Types: single | double

Reflection coefficients generated when Output(s) is set to K or A and K. For each input channel, port K outputs a length-N column vector whose elements are the prediction error reflection coefficients.

Dependencies

To enable port K, set Output(s) to A or A and K.

Data Types: single | double

Prediction error power output at port P as a vector whose length is the number of input channels.

Dependencies

To enable port P, select the Output prediction error power (P) parameter.

Data Types: single | double

Parameters

expand all

Specify the type of prediction coefficients output by the block. The block can output polynomial coefficients (A), reflection coefficients (K), or both (A and K).

When you set Output(s) to A and K, the block enables port A and K and each port outputs its respective set of prediction coefficients for each channel.

Select this parameter to enable the output port P, which outputs the output prediction error power.

Select this parameter to inherit the prediction order N from the input dimensions.

Specify the prediction order N. Note that N must be a scalar with a value less than the length of the input channels or the block produces an error.

Dependencies

This parameter appears only when you do not select the Inherit prediction order from input dimensions parameter.

Block Characteristics

Data Types

double | single

Direct Feedthrough

no

Multidimensional Signals

no

Variable-Size Signals

no

Zero-Crossing Detection

no

Algorithms

The Autocorrelation LPC block computes the least squares solution to

mininUa˜b

where indicates the 2-norm and

U=[u100u2u1u20u1u2uM000uM],a˜=[a2an+1],b=[u2u3uM00]

Solving the least squares problem via the normal equations

UUa˜=Ub

leads to the system of equations

[r1r2rnr2r1r2rnr2r1][a2a3an+1]=[r2r3rn+1]

where r = [r1r2r3 ... rn+1]T is an autocorrelation estimate for u computed using the Autocorrelation block, and * indicates the complex conjugate transpose. The normal equations are solved in O(n2) operations by the Levinson-Durbin block.

Note that the solution to the LPC problem is very closely related to the Yule-Walker AR method of spectral estimation. In that context, the normal equations above are referred to as the Yule-Walker AR equations.

References

[1] Haykin, S. Adaptive Filter Theory. 3rd ed. Englewood Cliffs, NJ: Prentice Hall, 1996.

[2] Ljung, L. System Identification: Theory for the User. Englewood Cliffs, NJ: Prentice Hall, 1987. Pgs. 278-280.

[3] Proakis, J. and D. Manolakis. Digital Signal Processing. 3rd ed. Englewood Cliffs, NJ: Prentice-Hall, 1996.

Extended Capabilities

Version History

Introduced before R2006a