-
Stephen
Stephen J.Chapman《MATLAB编程(第二版)》,希望对大家有所帮助。(Stephen J. Chapman )
- 2008-05-12 09:28:04下载
- 积分:1
-
cours3
document of photonic crystal
- 2009-05-15 04:31:42下载
- 积分:1
-
vuvuzela
基于谱减法语音增强matlab程序,很好的去除噪声,得到增强的语音信号(Speech enhancement based on spectral subtraction matlab program, very good to remove noise, enhanced voice signal)
- 2010-12-28 15:22:44下载
- 积分:1
-
memoire
EXAMPLE OF ADAPTIVE FUZZY CONTROLLER
- 2013-12-04 01:35:21下载
- 积分:1
-
17130188017 荆凡
说明: 数值分析的部分matlab代码分享,如有错误还请见谅!(Part matlab code analysis of numerical analysis, please forgive me if there is any mistake.)
- 2018-12-28 14:28:44下载
- 积分:1
-
cvx
MATLAB工具箱函数,适合于凸优化计算,CVX,使用简单,应用广泛(MATLAB toolbox function, suitable for convex optimization, CVX, easy to use, widely used)
- 2014-03-16 12:05:25下载
- 积分:1
-
FisherFace_New
PCA和LDA算法的融合,适用于人脸识别中(Fusion of PCA and LDA Algorithm for Face Recognition)
- 2016-12-30 13:29:30下载
- 积分:1
-
c2
说明: Induction motor modelling and several other modelling have been submitted here use it enjoy it.......
- 2012-08-02 11:28:17下载
- 积分:1
-
23571316
利用matlab 创建用户界面 标准论文版(Using matlab to create a user interface standard paper version)
- 2009-11-09 09:57:07下载
- 积分: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