?? aalmssign.m
字號:
function[w,y,e,J,w1]=aalmssign(x,dn,mu,M)
%function[w,y,e,J,w1]=aalmssign(x,dn,mu,M);
%all quantities are real-valued;
%x=input data to the filter;dn=desired signal;
%M=order of the filter;
%mu=step size parameter;x and dn must be of the same length
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 the vector x1 is produced
%of length M with elements from x in reverse order;
y(n)=w*x1';
e(n)=dn(n)-y(n);
w=w+2*mu*sign(e(n))*x1;
w1(n-M+1,:)=w(1,:);
end;
J=e.^2;
%the columns of w1 depict the history of the filter
%coefficients;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -