-
bianyuanjiance
边缘检测边缘检测边缘检测边缘检测边缘检测边缘检测(Edge detection edge detection edge detection edge detection edge detection edge detection)
- 2010-06-06 18:08:03下载
- 积分:1
-
Nonlinear-integer-programming-box
介绍了matlab中非线性整数规划箱,介绍了非线性整数规划的编程(Matlab introduced nonlinear integer programming box , introduces nonlinear integer programming programming
)
- 2021-04-26 17:28:45下载
- 积分:1
-
untitled
在matlab环境下,实现加密解密算法中的DES算法的源代码,以及GUI界面的生成(In the matlab environment, the realization of encryption decryption algorithm of DES algorithm source code, and the generation of GUI interface)
- 2015-04-21 15:41:54下载
- 积分:1
-
waveridge_search
用模最大值法提取小波脊,该例中又两条小波脊,所以是多脊提取。同时又施加惩罚函数,控制lamda的值,可以得到较为平滑的小波脊。( using maximum modulus extract wavelet ridge, the case has two wavelet ridge, it is a multi-ridge extraction. At the same time to impose the penalty function to control the value of lamda,the extracted ridge can be relatively smooth .)
- 2020-11-15 20:59:42下载
- 积分:1
-
facedetection
简单的人脸识别代码,如果是其他图片的话,放在当前文件下,修改一下文件名即可。(Face Recognition simple code, if it is the other picture, then on the current file, the file name can be changed a bit.)
- 2009-05-05 09:33:30下载
- 积分:1
-
FEC
聚类算法中的启发式算法中的FEC算法,可以处理复杂网络的问题。(Clustering algorithm heuristics in the FEC algorithm can handle complex network problems.)
- 2010-01-07 15:40:03下载
- 积分:1
-
mtspf_ga
遗传算法的matlab实现。本人已经运行通过,只需换下数据即可直接使用(Genetic algorithm matlab realize. I have run through, just replaced the data can be used directly)
- 2013-09-11 23:45:41下载
- 积分:1
-
kalmanfilter
说明: 包含一个VC程序和几个matlab程序一个基于Opencv的预测随机运动的点的经典例子(kalman fiter)
- 2009-08-04 09:12:10下载
- 积分:1
-
usgs_dem_1
对于高程数据的处理,通常需要各种格式之间的转换,此程序是将usgs高程数据转为dem格式的数据。(For the treatment of elevation data, usually need to convert between various formats, this program is the USGS elevation data to DEM format data.
)
- 2014-11-23 19:56:21下载
- 积分: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