-
MATLABforControlSystems
matlab for control system
- 2010-06-06 01:24:43下载
- 积分:1
-
powercontrol
实现无线传感网络的结点控制,可以高效实现无线传感器网络节点的分簇,对无线传感器网络功率控制进行仿真(Power control in sensor network)
- 2009-05-28 21:41:32下载
- 积分:1
-
StraihtFlight_2D
说明: 二维冲突概率算法,其实这个仿真是为了验证三维算法实现的基础,在二维的基础上再把二维扩展到三维。但也有不一样的地方(Two-dimensional conflict probability algorithm, in fact, this simulation is to verify the basis of three-dimensional algorithm, based on the two-dimensional two-dimensional and then extended to three-dimensional. But there are also not the same place)
- 2008-11-25 16:35:33下载
- 积分:1
-
xiaojun
本算法采用matalab编写,实现了基于复Hadamard变换的盲数字水印算法(The algorithm adopts matalab writing, Hadamard transform based on complex blind watermarking algorithm is proposed)
- 2009-11-18 11:00:07下载
- 积分:1
-
suijimoni1
刘宝碇《不确定规划及应用》第4章例4.3的matlab程序。内容简单,但可以有效的帮助初学者理解随机模拟的原理。(Liu anchor " uncertain Planning and Applications" in Chapter 4 Example 4.3 matlab program. Content is simple, but can effectively help beginners understand the principles of stochastic simulation.)
- 2015-03-20 10:10:49下载
- 积分:1
-
lyapunov_wolf
利用matlab求最大李雅普诺夫指数的wolf算法(Use matlab for the largest Lyapunov exponent wolf algorithm)
- 2014-02-12 11:14:34下载
- 积分:1
-
DFIG-CONTROL-BASED-ON-FLC
基于模糊控制的变速恒频风力发电最大风能跟踪研究(The maximum follow-up study of wind speed constant frequency wind power generation based on fuzzy control)
- 2014-11-13 20:14:35下载
- 积分:1
-
802.11a
仿真模拟802.11a误码率,支持BPSKQPSK16AQM64QAM,编解码采用MEX函数链接C,较MATLAB源码运行速度快(BER simulation 802.11a support BPSK QPSK 16AQM 64QAM, coding and decoding functions MEX link C, MATLAB code to run faster than the)
- 2015-01-20 12:06:39下载
- 积分:1
-
FuzzyInDelay
该模糊控制器的特点是针对大延迟或纯滞后系统(加干扰)进行控制,利用matlab自带fuzzy工具箱,采用经典文献中的模糊控制规则,并附原理及效果图以供学习交流。(The fuzzy controller is characterized by delayed or for large time delay system (plus interference) control, using fuzzy toolbox matlab own, using the classical literature of fuzzy control rules, together with the principle and effect diagram for the exchange of learning.)
- 2020-11-08 21:39:47下载
- 积分: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