asptrlslbpef.m

来自「卡尔曼滤波器设计的一个例子」· M 代码 · 共 31 行

M
31
字号
% [ff,bb,fb,cf,b,y,e,kf,kb,c]=asptrlslbpef(ff,bb,fb,cf,b,a,x)
%
%    Implements an adaptive RLS Lattice Backward Prediction 
%    Error Filter with filter input x(n) and output e(n).
% 
% Input Parameters:: 
%    ff  : last autocorrelation of forward prediction error (f)
%    bb  : last autocorrelation of backward prediction error (b)
%    fb  : last cross-correlation of f and b 
%    b   : last backward prediction error vector
%    a   : forgetting factor
%    x   : newest input sample x(n)
%
% Output parameters::
%    ff  : updated autocorrelation of forward prediction error 
%    bb  : updated autocorrelation of backward prediction error 
%    fb  : updated cross-correlation of f and b 
%    b   : updated backward prediction error vector
%    y   : linear combiner output 
%    e   : forward prediction error 
%    kf  : updated forward lattice coefficients kf(n)
%    kb  : updated backward lattice coefficients kb(n)
%    c   : equivalent transversal backward predictor coefficients.
%
% SEE ALSO INI_RLSLP, PREDICT_RLSLP, ASPTRLSLATTICE, ASPTLMSLATTICE
%       Author : John Garas PhD.%       Version 2.1, Release October 2002.%       Copyright (c) DSP ALGORITHMS 2000-2002.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?