asptlfpef.m
来自「卡尔曼滤波器设计的一个例子」· M 代码 · 共 29 行
M
29 行
% [k,b,P,e,y,c]=asptlfpef(k,b,P,x,mu_p)
%
% Implements an adaptive LMS Lattice Forward Prediction
% Error Filter with filter input x(n) and output
% e(n). LFPEF also returns the coefficients of the
% equivalent transversal PEF in the variable c.
% % Input Parameters::
% k : vector of lattice predictor coefficients
% b : vector of backward prediction error
% P : vector of last estimated power of b
% x : new input sample
% mu_p: adaptation constant for the predictor coefficient
%
% Output parameters::
% k : updated lattice predictor coefficients
% b : updated backward prediction error vector
% P : updated power estimate of b
% e : forward prediction error
% y : predictor output
% c : Equivalent transversal predictor coefficients.
%
% SEE ALSO INIT_LFPEF, PREDICT_LFPEF
% Author : John Garas PhD.% Version 2.1, Release October 2002.% Copyright (c) DSP ALGORITHMS 2000-2002.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?