aacomplexnlms.m

来自「Adaptive Filtering Primer with MATLAB」· M 代码 · 共 23 行

M
23
字号

function[w,y,e,J,w1]=aacomplexnlms(x,dn,mubar,M,c)
%function[w,y,e,J,w1]=aacomplexnlms(x,dn,mubar,M,c)
%x=input data to the filter;dn=desired signal;
%M=filter order;c=constant;mubar=step-size equivalent parameter;
%x and dn must be of the same length;J=learning curve;
N=length(x);
y=zeros(1,N);
w=zeros(1,M);%initialized filter coefficient vector;
for n=M:N
   x1=x(n:-1:n-M+1);%for each n vector x1 is of length
   %M with elements from x in reverse order;
   y(n)=conj(w)*x1';
   e(n)=dn(n)-y(n);
   w=w+(mubar/(c+conj(x1)*x1'))*conj(e(n))*x1;
   w1(n-M+1,:)=w(1,:);
end;
J=e.^2;
%the columns of the matrix w1 depict the history of the
%filter coefficients;

                   
                  

⌨️ 快捷键说明

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