-
Bayes滤波器算法,c++语言实现,Visual Studio.net下实现,2003年8月修正版本,用于数据融合算法
Bayes滤波器算法,c++语言实现,Visual Studio.net下实现,2003年8月修正版本,用于数据融合算法-Bayesian filter algorithm, c language, was officially realizing, in August 2003 amended version, algorithm for data integration
- 2023-01-26 08:40:04下载
- 积分:1
-
RM编码DSP代码
应用背景里德-穆勒码(Reed-Muller,RM)是一类纠正多个差错的编码。这类码构造简单,结构特性丰富,可以简单地通过采用软判决或硬判决算法的好几种方式来进行译码。本论文采用的RM编译码算法是:长度为(n, k)的Reed-Muller 码的编码方法是将生成矩阵×knM与输入数据向量×1kx按矩阵相乘,对每个元素对2 取模,即可以得到编码数据向量。而译码算法则是采用大数逻辑译码。关键技术本程序用C语言实现RM的编码和译码
- 2023-04-30 00:50:02下载
- 积分:1
-
《数字滤波与卡尔曼滤波》本人感觉写的比较好的卡尔曼滤波图书,...
《数字滤波与卡尔曼滤波》本人感觉写的比较好的卡尔曼滤波图书,- Digital Filter and Kalman Filter I feel better to write the Kalman filter books,
- 2022-02-14 11:37:33下载
- 积分:1
-
行列式计算,基本的行列式的运算都实现了而且可以任意阶运算,不过阶数太高会影响速度...
行列式计算,基本的行列式的运算都实现了而且可以任意阶运算,不过阶数太高会影响速度-determinant calculation, the basic determinant of the computing is achieved can be arbitrary order operation, but the order will affect the speed is too high
- 2022-10-28 05:05:04下载
- 积分:1
-
will enhance wavelet for target tracking. Lifting the core algorithm and is upda...
将提升小波用于目标跟踪。
小波提升的核心就是更新算法和预测算法,通过预测算法可以得到高频信息,而通过更新算子可以得到正确的低频信息.提升样式可以实现原位计算和整数提升,并且变换的中间结果是交织排列的.其中原位计算和整数提升在硬件实现中很有价值.-will enhance wavelet for target tracking. Lifting the core algorithm and is updated prediction algorithm, algorithm can be predicted high-frequency information, and by updating operator can correct the low-frequency information. upgrade format can achieve in-situ upgrade and Integer calculations, and transform the intermediate results are intertwined with a. which integer calculation and in-situ upgrading the hardware realization of great value.
- 2022-05-14 04:46:44下载
- 积分:1
-
openGI (几何图像)
OpenGI 是一个独立于平台的 C 库的三角网格模型参数化和创建从这种参数化的几何图像。 功能简单易学 OpenGL 类似语法和编程 2-流形上的任意亏格与可变数量 boundariesvarious 参数化算法,如平均值 paradigmsworks 拉伸最小化,为多图表 patchi ficationshardware 的原始 GIM algorithmsupport 加速几何图像 creationsampling 各种通用 attributestight 集成使用 OpenGL 的轻松和高效的数据共享
- 2022-04-17 10:49:59下载
- 积分:1
-
Calendrier pour sélectionner une date
Calendrier pour sélectionner une date
- 2022-04-19 05:27:01下载
- 积分:1
-
3DES C++ 源代码
3DES德C++源代码,用于测试和学习,3DES算法思路编写的非常清晰,对于初学者非常有用。
- 2022-02-22 09:50:48下载
- 积分:1
-
CUDA SDK示例代码
文件中包含有三个CUDA的SDK示例代码,分别为cudaEncode,cudaDecodeGL,cudaDecodeD3d9,三个代码分别讲述了CUDA环境下调用编码库对YUV文件进行编码,和解码部分与OpenGL,D3D9的转化,代码内容简单,很适合初学者学习。
- 2022-03-09 09:56:31下载
- 积分:1
-
迭代加深八数码
#include
#include
using namespace std;//变量声明
class EiNum;
#define MAX 20//MAX为最大的迭代深度
int depth;//当前树的最大深度
EiNum * root[MAX + 1];//重复当前的路径
//交换两个数
void Swap(int &a,int &b) {
int temp;
temp = a;
a = b;
b
- 2022-08-10 21:09:51下载
- 积分:1