-
Array-signal-processing
西电廖桂生老师的阵列信号处理讲义,适合阵列信号方向研究者入门时阅览。(Array signal processing lectures West, Liao Gui-sheng teacher, researcher for entry when reading array signal direction.)
- 2016-10-26 20:13:24下载
- 积分:1
-
exam6_1
采用4~8结点四边形等参元计算受内压的旋转厚壁圆筒(The use of 4 ~ 8-node isoparametric quadrilateral element calculation by the internal pressure of the rotating thick-walled cylinder)
- 2009-03-19 15:54:02下载
- 积分:1
-
circfun_draw
说明: 球函数可视化,
在MATLAB环境下实现求函数的可视化,分实部和虚部作图(Global visual function in the MATLAB environment to achieve the visual demand function, the real and imaginary parts of sub-plot)
- 2010-04-12 21:27:08下载
- 积分:1
-
NCestimation_V2
聚类算法不同有效性指标的性能比较,改进代码用于不同的应用问题(Clustering algorithm performance comparison of different effectiveness index, improve code used for different applications)
- 2015-03-26 14:30:05下载
- 积分:1
-
HMM-toobox
hmm经典代码,有又前向后向方程,verterbi算法(hmmClassic code)
- 2016-04-18 19:29:19下载
- 积分:1
-
ReadData
read data function for project colour base image retrieval
- 2009-04-07 11:59:49下载
- 积分:1
-
liziqunjiejueTSP
基本蚁群算法解TSP问题[matlab程序,大家参考(basic ACO for TSP [Matlab procedures, reference)
- 2007-05-22 13:40:41下载
- 积分:1
-
Matlab
信号去噪的基本步骤:
(1)信号的小波分解;
(2)小波分解高频系数的阈值量化;
(3)信号的小波重构。使用分解的低频系数以及阈值量化后的高频系数进行小波重构。
(The basic steps of signal denoising:( 1) of the wavelet decomposition of signals ( 2) the high frequency coefficients of wavelet decomposition threshold quantization ( 3) the signal wavelet reconstruction. Using the decomposition of the low frequency coefficient and threshold quantization the high-frequency coefficient after wavelet reconstruction.)
- 2011-08-12 18:00:28下载
- 积分:1
-
DTMF-Dectect
To implement a DTMF encoder and decoder in a noisy environment.
- 2013-03-30 00:02:32下载
- 积分: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