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

📄 init_bnlms.m

📁 卡尔曼滤波器设计的一个例子
💻 M
字号:
% [w,x,d,e,y,p]=init_bnlms(N,L,w0,x0,d0)
%
%   Creates and initializes the variables required for the 
%   Block Normalized Least Mean Squares adaptive filter. 
% 	% Input Parameters [Size]:: 
%   N  : filter length
%   L  : new samples per block (block length)
%   w0 : initial filter coef. vector [N x 1]
%   x0 : initial input delay line [N x 1]
%   d0 : initial desired response vector [L x 1]%
% Output parameters [default]::%   w  : initialized filter coef. vector [zeros]%   x  : initialized input delay line [zeros]
%   d  : initialized desired response vector [white noise]
%   e  : initialized error vector 
%   y  : initialized filter output vector%   p  : initialized estimate of the power of x%
% SEE ALSO ASPTBNLMS
%       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 + -