⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unscentedkalmanfiltermodel.hpp

📁 dysii是一款非常出色的滤波函数库
💻 HPP
字号:
#ifndef INDII_ML_FILTER_UNSCENTEDKALMANFILTERMODEL_HPP#define INDII_ML_FILTER_UNSCENTEDKALMANFILTERMODEL_HPP#include "../aux/vector.hpp"namespace indii {  namespace ml {    namespace filter {/** * UnscentedKalmanFilter compatible model. * * @author Lawrence Murray <lawrence@indii.org> * @version $Rev: 301 $ * @date $Date: 2007-09-10 23:56:50 +0100 (Mon, 10 Sep 2007) $ * * @param T The type of time. *  * @see indii::ml::filter for general usage guidelines. */template <class T = unsigned int>class UnscentedKalmanFilterModel {public:  /**   * Destructor.   */  virtual ~UnscentedKalmanFilterModel() = 0;  /**   * Propagate sample through the state transition function.   *   * @param x \f$\mathbf{x}^*\f$; state sample.   * @param w \f$\mathbf{w}^*\f$; noise sample.   * @param delta \f$\Delta t\f$; time step.   *   * @return \f$f(\mathbf{x}^*,\mathbf{w}^*,\Delta t)\f$; propagation   * of \f$\mathbf{x}^*\f$ through the transition function, given   * noise of \f$\mathbf{w}^*\f$.   */  virtual indii::ml::aux::vector transition(const indii::ml::aux::vector& x,      const indii::ml::aux::vector& w, T delta) = 0;  /**   * Propagate sample through the measurement function.   *   * @param x \f$\mathbf{x}^*\f$; state sample.   * @param v \f$\mathbf{v}^*\f$; noise sample.   *   * @return \f$g(\mathbf{x}^*,\mathbf{v}^*)\f$; propagation of   * \f$\mathbf{x}^*\f$ through the measurement function, given noise   * of \f$\mathbf{v}^*\f$.   */  virtual indii::ml::aux::vector measure(const indii::ml::aux::vector& x,      const indii::ml::aux::vector& v) = 0;};    }  }}template <class T>indii::ml::filter::UnscentedKalmanFilterModel<T>::~UnscentedKalmanFilterModel() {  //}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -