-
tuxian
分别是一些MATLAB中有关图象处理的相关命令集(MATLAB were some relating to the relevance of image processing command set)
- 2007-12-14 14:26:47下载
- 积分:1
-
gsvpwm
说明: SVPWM的matlab仿真模型,很好用。(SVPWM the matlab simulation model, it just works.)
- 2008-11-14 17:32:01下载
- 积分:1
-
RemObjects
RemObjects开发的三层的资料大全和例子源代码(RemObjects developed a three-tier Sourcebook and example source code)
- 2014-09-26 09:58:40下载
- 积分:1
-
emotion
Its a source code for different emotion created by using MATLAB 2013a enviornment
- 2014-11-25 00:32:04下载
- 积分:1
-
Proakis
说明: 用MATLAB进行数字信号处理( Proakis)的源码(Using MATLAB for digital signal processing (Proakis) the source)
- 2009-07-24 15:41:27下载
- 积分:1
-
2
说明: 根据归一化后的原始数据曲线,运用自组织神经网络进行藻种识别(According to the normalized data,we identify the HABs using the SOM.)
- 2011-06-05 09:24:05下载
- 积分:1
-
PED
多种格式求解偏微分方程,有迎风格式,lax-wendorff格式等(A variety of formats to the solution of partial differential equations)
- 2012-05-13 11:17:39下载
- 积分:1
-
zhijiexulie-dsss
文档包括直接序列扩频通信的源码和一些参考文档,值得大学学习参考。(The document includes direct sequence spread spectrum communication source code and reference document, it is worth the university reference.)
- 2013-05-13 15:52:00下载
- 积分:1
-
l1ioftb2
该算法非常适用于正系统、正切换系统等仿真(NUMERICAL SIMULATION FOR POSITIVE SYSTEMS and positive switched system)
- 2018-12-24 16:10:25下载
- 积分:1
-
mini2
clear all
clc
t=0:1/1000:10-1/1000
s=sin(2*pi*t)
snr=20
s_power=var(s) varience of s
linear_snr=10^(snr/10)
factor=sqrt(s_power/linear_snr)
noise=randn(1,length(s))*factor
x=s+noise Ó É SNR¼ Æ Ë ã Ë æ » úÔ ë É ù
x1=noise Ô ë É ùÔ ´ Ê ä È ë
x2=noise
w1=0 È ¨Ï µ Ê ý ³ õ Ö µ
w2=0
e=zeros(1,length(x))
y=0
u=0.05
for i=1:10000 LMSË ã ·¨
y(i)=w1*x1(i)+w2*x2(i)
e(i)=x(i)-y(i)
w1=w1+u*e(i)*x1(i)
w2=w2+u*e(i)*x2(i)
end
figure(1)
subplot(4,1,1)
- 2010-10-26 16:41:03下载
- 积分:1