资源简介
LMS的matlab代码;LMS的matlab代码

代码片段和文件信息
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% lmsalgo : LMS algorithm demo
% Author : Tamer abdelazim Mellik
% Contact information :
%Department of Electrical & Computer Engineering
%University of Calgary
%2500 University Drive N.W.
%Calgary AB T2N 1N4
%Canada .
% email :abdelasi@enel.ucalgary.ca
% email : tabdelaz@ucalgary.ca
% Webpage : http://www.enel.ucalgary.ca/~abdelasi/
% Date : 20-4-2003
% Version : 1.0.0
% Reference : S. Haykin Adaptive Filter Theory. 3rd edition Upper Saddle River NJ: Prentice-Hall 1996.
% Note : The author doesn‘t take any responsibility for any harm caused by the use of this file
clear all
close all
hold off
%channel system order
sysorder = 5 ;
% Number of system points
N=2000;
inp = randn(N1);
n = randn(N1);
[ba] = butter(20.25);
Gz = tf(ba-1);
%This function is submitted to make inverse Z-transform (Matlab central file exchange)
%The first sysorder weight value
%h=ldiv(basysorder)‘;
% if you use ldiv this will give h :filter weights to be
h= [0.0976;
0.2873;
0.3360;
0.2210;
0.0964;];
y = lsim(Gzinp);
%add some noise
n = n * std(y)/(10*std(n));
d = y + n;
totallength=size(d1);
%Take 60 points for training
N=60 ;
%begin of algorithm
w = zeros ( sysorder 1 ) ;
for n = sysorder : N
u = inp(n:-1:n-sysorder+1) ;
y(n)= w‘ * u;
e(n) = d(n) - y(n) ;
% Start with big mu for speeding the convergence then slow down to reach the correct weights
if n < 20
mu=0.32;
else
mu=0.15;
end
w = w + mu * u * e(n) ;
end
%check of results
for n = N+1 : totallength
u = inp(n:-1:n-sysorder+1) ;
y(n) = w‘ * u ;
e(n) = d(n) - y(n) ;
end
hold on
plot(d)
plot(y‘r‘);
title(‘System output‘) ;
xlabel(‘Samples‘)
ylabel(‘True and estimated output‘)
figure
semilogy((abs(e))) ;
title(‘Error curve‘) ;
xlabel(‘Samples‘)
ylabel(‘Error value‘)
figure
plot(h ‘k+‘)
hold on
plot(w ‘r*‘)
legend(‘Actual weights‘‘Estimated weights‘)
title(‘Comparison of the actual weights and the estimated weights‘) ;
axis([0 6 0.05 0.35])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2072 2009-02-05 09:38 lms.m
----------- --------- ---------- ----- ----
2072 1
- 上一篇:simuli
nk建立卡尔曼滤波算法 - 下一篇:动作能量图
相关资源
- 串行级联cpm系统MATLAB仿真
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
评论
共有 条评论