1 Star 0 Fork 2

drone/Extended-Kalman-Filter

forked from Lu/Extended-Kalman-Filter 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tools.h 561 Bytes
一键复制 编辑 原始数据 按行查看 历史
mvirgo 提交于 2018-12-14 08:45 +08:00 . Refactor: Improved code style for readability
#ifndef TOOLS_H_
#define TOOLS_H_
#include <vector>
#include "Eigen/Dense"
class Tools {
public:
/**
* Constructor.
*/
Tools();
/**
* Destructor.
*/
virtual ~Tools();
/**
* A helper method to calculate RMSE.
*/
Eigen::VectorXd CalculateRMSE(const std::vector<Eigen::VectorXd> &estimations,
const std::vector<Eigen::VectorXd> &ground_truth);
/**
* A helper method to calculate Jacobians.
*/
Eigen::MatrixXd CalculateJacobian(const Eigen::VectorXd& x_state);
};
#endif // TOOLS_H_
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/oct4/Extended-Kalman-Filter.git
git@gitee.com:oct4/Extended-Kalman-Filter.git
oct4
Extended-Kalman-Filter
Extended-Kalman-Filter
master

搜索帮助