-
matlabinLP
matlab在线性规划中函数的简单应用。(matlab online planning applications in a simple function)
- 2009-05-19 22:00:58下载
- 积分:1
-
MATLAB
有关介绍MATLAB内容的有关教程,主要讲解了MATLAB的使用方法。(Tutorial on MATLAB content, mainly on the use of MATLAB.)
- 2012-05-14 17:24:45下载
- 积分:1
-
neural-network
matlab算法大全之神经网络,,很不错的资料,较为详细(matlab neural network algorithm Guinness, very good information, more detailed)
- 2013-02-19 18:55:48下载
- 积分:1
-
ARMA-algorithm
Forecast analysis of time series data, ARMA algorithm using ARMA algorithm to implement this function
- 2014-10-27 20:43:36下载
- 积分:1
-
Joint-signal-detection_decoding_-ISI
ISI信道下的信号检测和译码的联合迭代算法的实现,编码使用递归卷积码,译码算法为BCJR算法。(Iterative algorithm to achieve joint signal detection and decoding under ISI channel, encoded using recursive convolutional code and decoding algorithm is BCJR algorithm.)
- 2013-12-11 00:19:47下载
- 积分:1
-
dvbs2
This program shows all possible проверочые matrixes applied in standard DVBS2 for coding LDPC
- 2010-11-20 07:21:17下载
- 积分:1
-
LCMV
LCMV波束形成,线性约束最小方差,两个信号,一个期望信号,一个干扰信号。(LCMV beamformer, LCMV, two signals, a desired signal, an interference signal.)
- 2013-07-17 20:58:49下载
- 积分:1
-
LMS
LMS算法函数
实现LMS算法定义,方便之后调用(least mean square algorithm)
- 2013-09-04 17:12:08下载
- 积分:1
-
Facial-image-registration
Facial image registration important papers
- 2014-10-03 21:27:41下载
- 积分: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