mobilerobotunscentedkalmanfiltermodel.hpp
来自「dysii是一款非常出色的滤波函数库」· HPP 代码 · 共 28 行
HPP
28 行
#ifndef MOBILEROBOTUNSCENTEDKALMANFILTERMODEL_HPP#define MOBILEROBOTUNSCENTEDKALMANFILTERMODEL_HPP#include "indii/ml/filter/UnscentedKalmanSmootherModel.hpp"#include "indii/ml/aux/vector.hpp"using namespace indii::ml::filter;namespace aux = indii::ml::aux;/** * Mobile robot model for unscented Kalman filter and smoother tests. */class MobileRobotUnscentedKalmanFilterModel : public UnscentedKalmanSmootherModel<unsigned int> {public: virtual aux::vector transition(const aux::vector& x, const aux::vector& w, unsigned int delta); virtual aux::vector measure(const aux::vector& x, const aux::vector& v); virtual aux::vector backwardTransition(const aux::vector& x, const aux::vector& w, unsigned int delta);};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?