登录
首页 » 算法 » kalman估值器,为了简洁未使用矩阵计算,应用了kalman滤波,c语言实现

kalman估值器,为了简洁未使用矩阵计算,应用了kalman滤波,c语言实现

于 2022-10-17 发布 文件大小:1.98 kB
0 198
下载积分: 2 下载次数: 1

代码说明:

kalman估值器,为了简洁未使用矩阵计算,应用了kalman滤波,c语言实现-A kalman estimator written with c , without matrix operation,applied kalman filter.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 实现base64编解码运,实现base64编解码运
    实现base64编解码运算,实现base64编解码运算-BASE64 CODEC, achieving base64 CODEC
    2022-04-15 22:26:11下载
    积分:1
  • 最优化问题:变尺度求最多元非线性函数的最值问题
    最优化问题:变尺度算法求最多元非线性函数的最值问题-optimization problem : Changing the scaling algorithm for the nonlinear function of the value problems
    2023-01-11 00:15:03下载
    积分: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
  • c++的俄罗斯方块
    俄罗斯方块俄罗斯方块(Tetris, 俄文:Тетрис)是一款风靡全球的电视游戏机和掌上游戏机游戏,它由俄罗斯人阿列克谢·帕基特诺夫发明,故得此名。俄罗斯方块的基本规则是移动、旋转和摆放游戏自动输出的各种方块,使之排列成完整的一行或多行并且消除得分。由于上手简单、老少皆宜,从而家喻户晓,风靡世界。
    2022-03-25 02:39:05下载
    积分:1
  • 矩阵运的类,可以方便地进行矩阵加,减,乘等运
    矩阵运算的类,可以方便地进行矩阵加,减,乘等运算。-matrix calculation of categories, and convenient for the matrix, plus or minus, by other operators.
    2022-08-09 18:12:50下载
    积分:1
  • 超短脉冲非线性传输的一个比较成熟的M文件
    计算超短脉冲非线性传输的一个比较成熟的M文件-Calculation of nonlinear transmission of ultrashort pulse of a more mature M documents
    2022-03-12 11:16:19下载
    积分:1
  • 8路PPM信号解码
    我自己写的多路PPM信号,并行输入转串行输出。最多支持8路PPM信号同时输入,解码后,变成单线串行输出。实时转换。使用STM8S105  8位单片机,价格便宜。串行输出后接主控MPU,大大节约MPU资源。可应用在无线电接收机,各种飞控等等。
    2023-01-12 00:15:04下载
    积分:1
  • 已知一个单链表L编写一个删除L中值为x结点的直接前驱结点的程序。
    #include #include #include   typedef int ElemType;       // 定义数据结构元素的数据类型 #define LIST_INIT_SIZE 10   // 线性表存储空间的初始分配量 #define LISTINCREMENT 5     // 线性表存储空间的分配增量   // 线性表的动态分配顺序存储结构 ty
    2022-03-13 17:25:00下载
    积分:1
  • JPHide 和JPSeek 的源代码
    应用背景JPHide 和JPSeek 的源代码!JPHide&JPSeek是一个JPEG图像的信息隐藏软件!-JPHide and JPSeek source code! JPHide & JPSeek is a JPEG image information hidden software!关键技术JPHIDE and JPSEEK are programs which allow you to hide a file in a jpeg visual image. There are lots of versions of similar programs available on the internet but JPHIDE and JPSEEK are rather special. The design objective was not simply to hide a file but rather to do this in such a way that it is impossible to prove that the host file contains a hidden file. Given a typical visual image, a low insertion rate (under 5%) and the absence of the original file, it is not possible to conclude with any worthwhile certainty that the host file contains inserted data. As the insertion percentage increases the statistical nature of the jpeg coefficients differs from "normal" to the extent that it raises suspicion. Above 15% the e
    2022-07-21 14:22:36下载
    积分:1
  • C++下,最小二乘拟合曲线,进行线性拟合,多项式拟合和指数拟合
    C++下,最小二乘算法拟合曲线,进行线性拟合,多项式拟合和指数拟合, 所有代码在.h文件中, 只需要包含.h文件到qt工程, 调用接口就能使用拟合曲线函数接口, 亲测可用, 为了大家更好使用, 附上test.cpp, 是调用的大概步骤, 具体使用, 根据需要修改即可
    2023-03-10 18:20:03下载
    积分:1
  • 696516资源总数
  • 106562会员总数
  • 4今日下载