-
% [nearest_neighbours] = find_nearest_neighbours( database, desc, max_dist )
%...
% [nearest_neighbours] = find_nearest_neighbours( database, desc, max_dist )
% Find the indices of the nearest neighbours of the given desriptors in the近邻点寻找算法,在非线性时间序列中很有用,是常用的算法- [Nearest_neighbours] = find_nearest_neighbours (database, desc, max_dist) Find the indices of the nearest neighbours of the given desriptors in the neighbor-point search algorithm, the nonlinear time series of very useful, is a commonly used algorithm
- 2022-05-24 09:30:26下载
- 积分:1
-
文件MD5 生产算法
char *MD5_file (char *path, int md5_len)
{
FILE *fp = fopen (path, "rb");
MD5_CTX mdContext;
int bytes;
unsigned char data[1024];
char *file_md5;
int i;
if (fp == NULL) {
fprintf (stderr, "fopen %s failed
", path);
return NULL;
}
MD5Init (&mdContext);
while ((bytes = fread (data, 1, 1024, fp)) != 0)
{
MD5Update (&mdContext, data, bytes);
}
MD5Final (&mdContext);
file_md5 = (char
- 2022-07-11 22:12:17下载
- 积分:1
-
加減法速算練習器
加減法速算練習器,可以設定1到4位數,最大可以連續10次運算,出題方式可以橫式或直式,適合給珠算練習或是小學生加減法練習。
- 2022-02-21 10:34:09下载
- 积分:1
-
可以用来计算大数的阶乘
可以用来计算大数的阶乘
- 2023-07-15 06:30:03下载
- 积分:1
-
Using vc platform development dual Lagrange interpolation procedures can be...
用vc++平台开发二元拉格朗日插值程序,能够实现对曲面上的插值-Using vc platform development dual Lagrange interpolation procedures can be achieved on the surface of the interpolation
- 2022-05-18 10:43:29下载
- 积分:1
-
人工智能实验,野人与传教士问题的源码,vc++编译。
人工智能实验,野人与传教士问题的源码,vc++编译。-Artificial intelligence experiments, Savage and missionaries problem code, vc++ compiler.
- 2023-02-13 02:10:03下载
- 积分:1
-
正则表达式处理,查找,匹配,资源非常好,要的赶紧下载。...
正则表达式处理,查找,匹配,资源非常好,要的赶紧下载。-regular expressions
- 2023-01-27 20:40:04下载
- 积分:1
-
Calendrier pour sélectionner une date
Calendrier pour sélectionner une date
- 2022-04-19 05:27:01下载
- 积分:1
-
matrix的一些常用操作
一些常用的矩阵操作,包括常用的矩阵加法,乘法,strassen算法,还有位并行操作预留的算法。包括为wingoth算法预留的矩阵乘法,为了分块矩阵预留的算法等等。
- 2022-04-19 02:11:14下载
- 积分:1
-
矩阵乘法
矩阵乘法
- 2022-03-11 03:31:02下载
- 积分:1