-
1-s2.0-S1876610214007826-main
mppt tracking for solar inverter
- 2014-11-20 22:51:10下载
- 积分:1
-
boost_CM_switching
open loop boost converter using ramp input
- 2014-02-11 04:18:07下载
- 积分:1
-
cic_M
CIC filter setup, this is special used for the DDC
- 2009-03-13 12:39:33下载
- 积分:1
-
graph_theory
介绍了图论一些经典算法并且举例说明了matlab编程实现(Introduced a number of classical graph theory algorithms and matlab programming examples realize)
- 2008-08-22 17:51:47下载
- 积分:1
-
Circuit.Analysis.II.with.MATLAB
this is a ebook on Circuit Analysis II with MATLAB
- 2012-10-18 21:49:43下载
- 积分:1
-
jiance
使用matlab检测图片中的物体,一幅图作为背景,另一幅图中在前一背景下新加了一个物体,则可通过此程序来检测到(Matlab object detection picture, a picture as the background, another picture of the previous context added a new object can be detected through this procedure to)
- 2012-11-14 20:36:21下载
- 积分:1
-
MATLAB-VRP
MATLAB-遗传算法-多车场-开放式-带时间窗-多商品-VRP问题(MATLAB- genetic algorithm- MultiDepot- open- with time windows- multi-commodity-VRP problem)
- 2017-03-30 14:45:03下载
- 积分:1
-
HistEqualization
Histogram Equalization for enhancement of medical image
- 2010-08-19 20:00:43下载
- 积分:1
-
matlabexamples
matlab揭秘这本书的配套学习实例,里面有书上讲解到的源代码实例。(matlab examples)
- 2010-05-12 09:32:51下载
- 积分:1
-
11
说明: 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:20:03下载
- 积分:1