-
abc
二级倒立摆的matlab仿真程序,希望大家给点意见,哈哈,,,,,,(Double inverted pendulum)
- 2009-05-05 10:34:34下载
- 积分:1
-
EXIT
Turbo均衡的性能评估 通过外信息的计算 采用BCJR算法进行软译码(Turbo equalization extrinsic information)
- 2021-04-09 15:18:59下载
- 积分:1
-
proakis
DSP2 using matlab v4
- 2009-05-24 02:12:48下载
- 积分:1
-
agvdemo
Demoagvdemo which used kalman and dd1 and dd2
- 2009-05-29 22:07:52下载
- 积分:1
-
lianxuchaoliu
说明: 运用连续潮流发求解静态电压稳定指标负荷裕度(Made use of a continuous trend of the load of solving the static voltage stability margin index)
- 2011-03-08 10:40:07下载
- 积分:1
-
DIT_FFT
说明: 快速傅里叶变换FFT通用matlab源程序,众所周知,matlab工具箱里的fft函数是内置的,我们无法看到其源代码,为了学习交流方便,特帖出本人以前用matlab语言写的fft通用matlab源程序,以供初学者学习参考之用!(FFT fast Fourier transform common Matlab source, as we all know, the Matlab toolbox fft function is built-in, we can not see the source code, in order to facilitate the exchange of learning and special TIE out I used to write using the Matlab language fft common source Matlab, for beginners to learn reference only !)
- 2021-04-05 21:59:03下载
- 积分:1
-
upResolDemo
这是一个超分辨率图像复原的代码,仿真实验结果较好,不过原作者对其中两个文件处理过,所以不知道具体的原理(This is a super-resolution image restoration code, simulation results, however, the original author treated them two files, so I do not know the specific principle)
- 2013-03-19 16:48:15下载
- 积分:1
-
ToolBox_SOM
生成拓扑映射,一个很好用的工具箱,用MATLAB写出的(Generates topology maps ABC MAP OF MATLAB HELLO WORLD iT IS A NICE SOFTWARE YES I DO )
- 2013-11-26 20:40:47下载
- 积分:1
-
hu_guang_shu
胡广书《现代信号处理》,现代信号处理的经典教材,内附书中的源程序(Hu Guang book " Modern signal processing," the classic textbook of modern signal processing, source code included in the book)
- 2010-08-16 09:51:48下载
- 积分: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