rlsinit.m
来自「Mathematical Methods by Moor n Stiling.」· M 代码 · 共 17 行
M
17 行
function rlsinit(m,delta)
%
% Initialize the RLS filter
%
% function rlsinit(m,delta)
% m = dimension of vector
% delta = a small positive constant used for initial correlation inverse
% Copyright 1999 by Todd K. Moon
global hrls;
global Prls;
global xrls;
hrls = zeros(m,1); % the filter weight
xrls = zeros(m,1); % the data vector
Prls = 1/delta*eye(m); % the correlation matrix
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?