dsp.RCToLPC

(To be removed) Convert reflection coefficients to linear prediction coefficients

dsp.RCToLPC will be removed in a future release. Use rc2poly instead. For more information, see Compatibility Considerations.

Description

The RCToLPC object converts reflection coefficients to linear prediction coefficients.

To convert reflection coefficients to LPC:

  1. Define and set up your RC to LPC System object™. See Construction.

  2. Call step to convert RC to LPC according to the properties of dsp.RCToLPC. The behavior of step is specific to each object in the toolbox.

Note

Starting in R2016b, instead of using the step method to perform the operation defined by the System object, you can call the object with arguments, as if it were a function. For example, y = step(obj,x) and y = obj(x) perform equivalent operations.

Construction

rc2lpc = dsp.RCToLPC returns an RC to LPC System object, rc2lpc, that converts reflection coefficients (RC) to linear prediction coefficients (LPC).

rc2lpc = dsp.RCToLPC('PropertyName',PropertyValue,...) returns an RC to LPC conversion object, rc2lpc, with each specified property set to the specified value.

Properties

PredictionErrorOutputPort

Enable normalized prediction error power output

Set this property to true to return the normalized error power as a vector with one element per input channel. Each element varies between 0 and 1. The default is true.

ExceptionOutputPort

Produce output with stability status of filter represented by LPC coefficients

Set this property to true to return the stability of the filter. The output is a vector of a length equal to the number of channels. A logical value of 1 indicates a stable filter. A logical value of 0 indicates an unstable filter. The default is false.

Methods

stepConvert columns of reflection coefficients to linear prediction coefficients
Common to All System Objects
release

Allow System object property value changes

Examples

Convert RC to LPC Coefficients

Note: This example runs only in R2016b or later. If you are using an earlier release, replace each call to the function with the equivalent step syntax. For example, myObject(x) becomes step(myObject,x).

Convert reflection coefficients to linear prediction coefficients.

levinson = dsp.LevinsonSolver;
ac = dsp.Autocorrelator;
ac.MaximumLagSource = 'Property';
ac.MaximumLag = 10; % Compute autocorrelation
% lags between [0:10]
rc2lpc = dsp.RCToLPC;
x = (1:100)';
a = ac(x);
k = levinson(a); % Compute reflection coefficients
[A, P] = rc2lpc(k);

Algorithms

This object implements the algorithm, inputs, and outputs described on the LPC to/from RC block reference page. The object properties correspond to the block parameters, except:

There is no object property that corresponds to the Type of conversion block parameter. The object always converts LPC to RC.

Compatibility Considerations

expand all

Warns starting in R2019a

Extended Capabilities

See Also

Functions

Introduced in R2012a