-
example1
10個MATLAB處理運算方法,影像強化灰階二值等,看看(10 MATLAB method of processing algorithms, image enhanced gray-scale value of 2 and so on, to see)
- 2009-04-30 20:51:17下载
- 积分:1
-
braking-of-induction-motor
braking of induction motor.
- 2014-10-16 17:46:14下载
- 积分:1
-
functionmatlab
自备matlab函数说明工具箱,非常全;我经常用来查询函数(Own toolbox matlab function that is very wide I always used to query function)
- 2009-03-31 23:44:20下载
- 积分:1
-
huyuthreephaserelay1
三相电路的svpwm,仿真实现,很难找到的给做仿真的兄弟(Three-phase circuits svpwm, simulation, it is difficult to find the brothers to do simulation)
- 2008-12-22 11:11:00下载
- 积分:1
-
motionComp
this is used to find motion compensation. this is matlab code
- 2009-05-05 17:09:37下载
- 积分:1
-
levinsonf
信号为两个正弦信号加高斯白噪声,用levinson递推法进行功率谱估计。(Signal for two sinusoidal signal plus Gaussian white noise, with levinson recursive power spectrum estimation method.)
- 2009-06-14 15:41:52下载
- 积分:1
-
hw1
this codw is a simulation of photonic crystal 1 dimentional array dispersion
- 2012-04-24 15:14:59下载
- 积分:1
-
Baseline-adjustment--for-wave
可对地震波进行积分和基调运算,适合研究生做课题研究。(For get the real displacement ,we
can get it by two times integral. But we need to do baseline adjustment.)
- 2015-04-01 20:28:27下载
- 积分:1
-
Genetic_Algorithm
matlab遗传算法工具箱 进化计算 遗传算法
基于遗传算法搜索的最优化方法(matlab genetic algorithm toolbox evolutionary computation genetic algorithm based on genetic algorithm optimization method)
- 2010-09-29 12:07:07下载
- 积分:1
-
EEE-212-lab-sheet
empirical formula with kaiser
clc
clear all
fs=1000
fc=250
df=50
r=0.001
f=fc/fs
dw=2*pi*(df/fs)
a=-20*log(r)
n=floor(((a-8)/(2.285*dw))+1)
if a>50
b=0.1102*(a-8.7)
elseif a>=21 && a<=50
b=0.5842*((a-21)^0.4)+0.07886*(a-21)
elseif a<21
b=0.0
end
w=kaiser(n,b)
for i=1:n
if i~=(n-1)/2
hd(i)= (2*f*sin((i-((n-1)/2))*2*pi*f))/((i-((n-1)/2))*2*pi*f)
elseif i==(n-1)/2
hd(i)=2*f
end
end
for j=1:n
h(j)=w(j)*hd(j)
end
subplot(3,1,1), plot(w)
subplot(3,1,2), plot(h)
subplot(3,1,3), plot(h,n)
- 2014-12-24 23:21:13下载
- 积分:1