⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 init_lmslattice.m

📁 卡尔曼滤波器设计的一个例子
💻 M
字号:
% [k,c,b,P,d,y,e] = init_lmslattice(L,k0,c0,b0,P0,d0);
%
%    Creates and initializes the variables required for the 
%    LMS Lattice (Joint Process Estimator) Adaptive Filter.% % Input Parameters [Size]:: 
%    L   : number of linear combiner coefficients
%    k0  : initial lattice predictor coefficients [Lx1]
%    c0  : initial linear combiner coefficients [Lx1]
%    b0  : initial backward prediction errors [Lx1]
%    P0  : initial power of b [Lx1]
%    d0  : initial desired sample [1x1]
%
% Output parameters [default]::
%    k   : lattice predictor coefficients [zeros]
%    c   : linear combiner coefficients [zeros]
%    b   : backward prediction errors [white noise]
%    P   : estimated power of b [b .* b]
%    d   : desired response [white noise]
%    y   : linear combiner output [c' * b]
%    e   : error signal [e = d - y]
%
% SEE ALSO ASPTLMSLATTICE, MODEL_LMSLATTICE
%       Author : John Garas PhD.%       Version 2.1, Release October 2002.%       Copyright (c) DSP ALGORITHMS 2000-2002.

⌨️ 快捷键说明

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