init_lbpef.m

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

M
27
字号
% [k,b,P,e,y,x,c]=init_lbpef(L,k0,b0,P0)
%     Creates and initializes the variables required for the 
%     Lattice Forward Prediction Error Filter.  
% 	% Input Parameters [Size]:: 
%     L   : number of filter coefficients
%     k0  : initial lattice predictor coefficients [L x 1]
%     x0  : initial input delay line [(L+1)x1]
%     b0  : initial backward prediction errors [(L+1)x1]
%     P0  : initial power of b [(L+1)x1]
%
% Output parameters::
%     k   : lattice predictor coefficients [zeros]
%     b   : backward prediction errors [random]
%     P   : estimated power of b [b .* b]
%     e   : forward prediction error [random]
%     y   : predictor output [0]
%     x   : input delay line [random(L+1,1)]
%     c   : equivalent transversal predictor coefficients.
%
% SEE ALSO ASPTLBPEF, PREDICT_LBPEF
%       Author : John Garas PhD.%       Version 2.1, Release October 2002.%       Copyright (c) DSP ALGORITHMS 2000-2002.

⌨️ 快捷键说明

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