-
卡尔曼滤波的C语言实现
Kalman Filter 是一个递归的估计,即只要获知上一时刻的状态估计和当前状态的观测就可以计算出当前状态的估计,不同于其他的估计技术,Kalman 滤波器不需要观测或/和估计的历史记录,KalmanFilter 是一个纯粹的时域滤波器,而不像低通滤波器等频域滤波器那样,需要在频域中设计,然后转换到时域中应用。 本代码是用C语言实现卡尔曼滤波。
- 2022-08-17 09:07:33下载
- 积分:1
-
jpeg source code
JPEG组织官方JPEG算法源代码,内含编码和解码,包括JPEG, JPEG2000, BMP, PNM等等格式的编解码,精度准确,经过实际编译测试,代码可用。
- 2023-09-07 13:55:06下载
- 积分:1
-
Bayesian Filter.贝叶斯(Bayesian)滤波器的C++类库。包括卡尔曼滤波(kalman filter)、粒子滤波(particle filt...
Bayesian Filter.贝叶斯(Bayesian)滤波器的C++类库。包括卡尔曼滤波(kalman filter)、粒子滤波(particle filter)等。-Bayesian Filter. Bayesian (Bayesian) filters C Class. Including Kalman filter (Kalman filter). particle filter (particle filter).
- 2022-07-09 16:17:24下载
- 积分:1
-
这是我学习数字信号处理时编写的程序!功能就是显示一些常用的函数的图形!并可以做FFT计算!...
这是我学习数字信号处理时编写的程序!功能就是显示一些常用的函数的图形!并可以做FFT计算!-This is what I have learned from digital signal processing to prepare the procedures! Function is to show that some of the functions commonly used graphics! And FFT calculation can be done!
- 2022-08-26 07:30:20下载
- 积分:1
-
poj2187给一堆点,求出其中的最远点对,凸包的应用
poj2187给一堆点,求出其中的最远点对,凸包的应用-poj2187 to a pile of points, obtained one of the furthest points right, the application of convex hull
- 2022-03-10 07:13:36下载
- 积分:1
-
单片机输入法c源代码
纯C语言编写的输入法源代码,主要用于单片机,有需要的可以下载!
使用说明:
拼音输入法杳询函数: unsigned char code * py_ime(unsigned char input_py_val[]);
input_py_val为已输入的拼音码字符串头指针,
反回值为中文的起始地址,当为0时,杳询失败
应用举例:
{
unsigned char input_string[]={"bang"};
unsigned char chines_string[100];
sprintf(chines_string,"%s",py_ime(input_string));
}
- 2023-08-15 12:10:04下载
- 积分:1
-
在数据库中发现频繁模式和关联规则是数据挖掘领域的最基本、最重要的问题。大多数早期的研究采用了类似Apriori算法的产生候选级并测试迭代的途径代价是昂贵的,尤其...
在数据库中发现频繁模式和关联规则是数据挖掘领域的最基本、最重要的问题。大多数早期的研究采用了类似Apriori算法的产生候选级并测试迭代的途径代价是昂贵的,尤其是挖掘富模式和长模式时,Jiawei Han提出了一种新颖的数据结构FP_tree,及基于其上的FP_growth算法,主要用于有效的进行长模式与富模式的挖掘.本文在讨论了FP_growth算法的基础上,提出了用Visual C++实现该算法的方法,并编写了算法的程序。-found in the database model and the frequent association rules is the area of data mining the most fundamental and important issues. Most of the early studies used a similar Apriori algorithm for the selection of candidates and test-iterative way was costly, particularly mining the rich patterns and long model, Jiawei Han proposed a novel data structure FP_tree and on the basis of their FP_growth algorithm used effectively the model for long and rich patterns of excavation. This paper discussed the FP_growth algorithm on the basis of the Visual C of the algorithm, and the preparation procedure of the algorithm.
- 2023-01-10 12:20:03下载
- 积分:1
-
信度函数的粗化逼近
Coarsening approximations of belief functions
- 2022-07-28 08:34:11下载
- 积分:1
-
判断点是否处于多边形内的最佳方法(适用于任意多边形包括凹凸边形)
本例子在VC6.0上编写了判断点是否处于多边形内的最佳方法,它和一般的叉乘判别法,角度判别法,面积判别法不同,它适用于任意多边形(包括凹凸边形)。它的基本思想就是:假设需要判定的点P,通过点P水平向左做射线,如果P在多边形内部,那么这条射线与多边形的交点必为奇数,反之,交点个数为偶数。所以,我们可以顺序考虑多边形的每条边,求出交点的总个数。当然,存在一些特殊情况,例如射线刚好和多边形端点相交。对于一些特殊情况,算法也有所考虑,并一一解决。具体见算法里的注释即可。
- 2022-01-31 11:10:31下载
- 积分:1
-
点云的配准icp算法
icp算法源代码,主要用于点云拼合,是基于matlab上编写的,实现两个点云数据的对准
- 2023-07-20 23:15:04下载
- 积分:1