-
nlcl
电力系统通用潮流计算程序,适合大部分电力系统的matlab源程序(Universal power system load flow calculation program)
- 2012-04-13 20:58:31下载
- 积分:1
-
ASCI
Auto sequential current source inverter.circuit equaally resmbels which is in in p.s.bimbra
- 2011-06-18 15:30:42下载
- 积分:1
-
EXPERIMENT2
electronics one labrotaruary experiment
- 2013-10-23 03:14:16下载
- 积分:1
-
matlab-image-processing
matlab图像处理宝典,内容很全面,适合自学者和相关领域的研究人员。(matlab image processing Collection, the content is very comprehensive, suitable for self-learners and researchers of related fields.)
- 2013-04-15 08:37:41下载
- 积分:1
-
tracking
particle filter for tracking visual target using Matlab ,enjoy it!
- 2007-11-26 13:44:45下载
- 积分:1
-
MATLAB
说明: 可以教你快速入门的MATLAB教程,个人觉得很好,值得学习一下(not bad)
- 2010-04-15 08:30:04下载
- 积分:1
-
Boiler1
Boiler1 pid fuzzy controller wiyh details
- 2012-05-29 17:12:36下载
- 积分:1
-
uerx
randomly distribute Ue in Macro eNB
- 2013-10-29 15:01:45下载
- 积分:1
-
111
几个简单的遗传算法例子,一般有点相关基础的都能看懂,很容易的。(Few simple examples of the genetic algorithm, based on the general correlation can understand a little bit, very easy.)
- 2010-06-15 11:27:42下载
- 积分: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