www.gusucode.com > dsp 案例源码程序 matlab代码 > dsp/ConvertCepstralToLPCCoefficientsExample.m

    %% Convert Cepstral 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 cepstral coefficients to linear prediction coefficients.

cc = [0 0.9920 0.4919 0.3252 0.2418 , ...
    0.1917 0.1583 0.1344 0.1165 0.0956]';
hcc2lpc = dsp.CepstralToLPC;
a = hcc2lpc(cc)