www.gusucode.com > signal 案例源码程序 matlab代码 > signal/ComputeAutocorrelationSequenceExample.m

    %% Compute Autocorrelation Sequence
% Determine the autocorrelation sequence that corresponds to a given
% vector, |k|, of reflection coefficients and an initial zero-lag
% autocorrelation given by |r0|.

% Copyright 2015 The MathWorks, Inc.


%%
k = [0.3090 0.9800 0.0031 0.0082 -0.0082];
r0 = 0.1;
a = rc2ac(k,r0)