-
bingwang
下垂控制,两个微电源,孤岛运行和并网运行(droop control,two DG )
- 2021-03-02 20:49:34下载
- 积分:1
-
smm
基于cvca模型的smm算法,用于杂波环境下的目标跟踪问题(Cvca model based on the smm algorithm, cluttered environment for target tracking problem)
- 2009-05-11 11:39:31下载
- 积分:1
-
foufej
Sumas parciales de Fourier de la función diente de sierra.
Sumas de fejer de la funcion salto.
Sumas parciales de fejer de la funcion delta
- 2011-08-03 00:55:51下载
- 积分:1
-
nedi
基于插值的超分辨率NEDI算法,用matlab实现(The super-resolution interpolation algorithm based NEDI)
- 2021-04-23 15:58:48下载
- 积分:1
-
kalmanfilter
编写卡尔曼滤波程序实现航迹的滤波估计,并计算出误差,仿真曲线(Kalman filter procedure to prepare implementation of the filtering track estimate and calculate the error, the simulation curve)
- 2009-03-12 15:44:18下载
- 积分:1
-
心电信号滤波
说明: 心电信号滤波,数字信号处理课后试验,其中有源程序,频谱图,滤波图(ECG filtering, digital signal processing OSCAR test, which is the source, the spectrum, filtering plan)
- 2005-12-17 15:40:22下载
- 积分:1
-
scott
matlab中电气化铁路上的scott变压器模型。(matlab in electrified railway on scott transformer model.)
- 2013-07-13 18:55:05下载
- 积分:1
-
PEG
用PEG构造法生成LDPC监督矩阵的程序(With PEG construction method to generate LDPC matrix program oversight)
- 2011-09-02 22:39:32下载
- 积分:1
-
parabola
利用matlab软件模拟平行光入射抛物线型曲面后反射的光路图。(It uses atalb software to simulate parallel light incident parabolic surface reflected light path diagram)
- 2015-01-05 13:42:49下载
- 积分: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