-
% [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
-
用c++编的N个实例子, 有参考价值
用c++编的N个实例子, 有参考价值-With c++ Allocation of N examples son, a reference value
- 2023-01-01 23:50:03下载
- 积分:1
-
一个可分解上万阶稀疏矩阵的SVD算法
一个可分解上万阶稀疏矩阵的SVD算法-a million bands on the sparse matrix of SVD algorithm
- 2022-12-19 12:20:03下载
- 积分:1
-
Very classic matrix algorithm to know on the next
很 经典 的 矩阵算法
知道 的 就下
-Very classic matrix algorithm to know on the next
- 2022-08-26 13:31:05下载
- 积分:1
-
RANSAC直线 椭圆 圆 拟合
RANSAC为RANdom SAmple Consensus的缩写,它是根据一组包含异常数据的样本数据集,计算出数据的数学模型参数,得到有效样本数据的算法。它于1981年由Fischler和Bolles最先提出。该资源是利用MATLAB编写的 RANSAC 直线 椭圆 圆 拟合程序
- 2022-12-16 05:20:03下载
- 积分:1
-
基于Zigbee的四锚节点三点质心定位算法程序
本定位算法采取了采集四个参考节点的RSSI值作为参考,上位机软件在运行的过程中。从四个RSSI值中选取三个信号强度值最强的作为定位为的参考值。进而对盲节点进行定位。
- 2022-02-03 18:14:45下载
- 积分:1
-
Implementations of different methods of sorting:
BinaryInsertions.pas
Bub...
Implementations of different methods of sorting:
BinaryInsertions.pas
BubbleSort.pas
HeapSort.pas
InsertionBorder.pas
InsertionSort.pas
modifbubble.pas
qsort.pas
quicksort.pas
selection.pas
Shaker.pas
shell.pas
- 2023-06-02 19:15:03下载
- 积分:1
-
这个程序会问你想找到多少个数字,然后是它的平均值…
This program will ask how many numbers you want to find the average of, then it will allow you to enter your numbers(yes they can even be decimals) then it will calculate the mean, median, mode and range of what you enter.
- 2022-04-25 08:24:48下载
- 积分:1
-
非递归解决斐波那契数列问题
递归的缺点:
–递归算法解题相对常用的算法如普通循环等,运行效率较低。因此,应该尽量避免使用递归,除非没有更好的算法或者某种特定情况,递归更为适合的时候。在递归调用的过程当中系统为每一层的返回点、局部量等开辟了栈来存储。递归次数过多容易造成栈溢出等
–执行时间长、占用空间多
–主要原因:递归调用时的现场保护与恢复(相对于迭代过程而言)
一个反复执行过程,可否用循环结构实现?
递归调用时,返回点怎么记录?
递归返回时,如何接着以前的断点继续执行?
返回值如何处理:若当前是较深一层的递归调用,如何将返回值返回到上一层递归过程的引用位置上?
系统栈:保护现场、保存返回值、返回地址
- 2023-01-28 00:35:03下载
- 积分:1
-
最大生命周期的贪婪连通控制集构造算法
应用背景算法有三个阶段组成,在第一个阶段生成一个最大生命周期的独立集,在第二个阶段,通过Steiner树连通生成的极大独立集,并保证选择Steiner节点来连通控制集,仍要保证尽可能的满足最大生命周期,第三个阶段,通过删除冗余的控制节点来减少cds规模。关键技术减小cds的规模,在这个阶段,我们通过将一些冗余控制节点变为被控制节点来减小cds的规模。一个控制节点v是冗余的,如果我们删除节点v之后,产生的cds仍可以控制图中所有的飞cds节点,且仍是连通的。此时,节点v可以被cds中的其他节点所控制。删除冗余节点遵循某些规则,算法中有体现!
- 2022-05-08 16:40:01下载
- 积分:1