-
numerical-analysis
用matlab 编写的求解各类数值问题的代码,附有实验报告(code for various of numerical analysis )
- 2012-05-04 15:53:52下载
- 积分:1
-
AF-or-DF-Coorperation
协同系统下的仿真,分析了AF与DF两种不同的策略,并且附带相应的仿真图。(Collaborative system simulation, analysis of the AF and DF are two different strategies, and with the corresponding simulation diagram.)
- 2011-10-20 17:24:06下载
- 积分:1
-
MIMO-OFDM-MATLAB
MIMO-OFDM Wireless Communications with MATLAB 电子书,书中含详细说明以及源码(MIMO-OFDM Wireless Communications with MATLAB)
- 2014-11-14 11:07:33下载
- 积分: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
-
DC_DC_Converter
Model of a DC-DC converter
- 2015-04-07 18:49:50下载
- 积分:1
-
radonbianhuan
CT重建学习之radon变换的matlab源代码(Radon CT reconstruction learning transform matlab source code)
- 2015-04-15 16:28:26下载
- 积分:1
-
atmosphere_model
通过MATLAB中.m语言实现了标准大气模型(The standard atmosphere model is implemented by using matlab )
- 2020-11-30 11:09:28下载
- 积分:1
-
OFDMmod
ofdm 调制解调算法的matlab源代码(OFDM modulation and demodulation)
- 2010-02-07 10:51:16下载
- 积分:1
-
SIMULINKforbeginners
simulink初学者教程,挺不错的,精通simulink系统仿真与控制(simulink tutorial for beginners, listening to good)
- 2013-07-23 10:00:48下载
- 积分:1
-
k_means
k means techniques de classification non supervisée (clustering) les plus utilisées.
Etant donné un entier K, K-means partitionne les données en K groupes, ou "clusters", ou "classes" ne se chevauchant pas. Ce résultat est obtenu en positionnant K "prototypes", ou "centroï des" dans les régions de l espace les plus peuplées. Chaque observation est alors affectée au prototype le plus proche (règle dite "de la Distance Minimale"). Chaque classe contient donc les observations qui sont plus proches d un certain prototype que de tout autre prototype
- 2010-08-05 23:34:13下载
- 积分:1