asptlclms.m
来自「卡尔曼滤波器设计的一个例子」· M 代码 · 共 25 行
M
25 行
% [w,y,e]= asptlclms(x,w,d,mu,c,a)
%% Performs filtering and coefficient update using the
% Linearly Constrained LMS adaptive algorithm,
% subject to the constraint c' * w = a.% % Input Parameters::
% x : vector of input samples at time n
% w : vector of filter coefficients w(n-1)
% d : desired response d(n)
% mu : adaptation constant
% c : the weighting vector in the constraint equation
% a : a scalar constant% Output parameters::
% w : updated filter coefficients w(n)
% y : filter output y(n)
% e : error signal; e(n)=d(n)-y(n)
%
% SEE ALSO INIT_CLLMS, MODEL_CLLMS
% Author : John Garas PhD.% Version 2.1, Release October 2002.% Copyright (c) DSP ALGORITHMS 2000-2002.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?