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

📄 unscentedtransformationmodel.hpp

📁 dysii is a C++ library for distributed probabilistic inference and learning in large-scale dynamical
💻 HPP
字号:
#ifndef INDII_ML_FILTER_UNSCENTEDTRANSFORMATIONMODEL_HPP#define INDII_ML_FILTER_UNSCENTEDTRANSFORMATIONMODEL_HPP#include "../aux/vector.hpp"namespace indii {  namespace ml {    namespace filter {/** * UnscentedTransformation compatible model. Represents the function * \f$f\f$ through which the Gaussian distributed random variable will * be propagated. * * @author Lawrence Murray <lawrence@indii.org> * @version $Rev: 301 $ * @date $Date: 2007-09-10 23:56:50 +0100 (Mon, 10 Sep 2007) $ */template <class T = unsigned int>class UnscentedTransformationModel {public:  /**   * Destructor.   */  virtual ~UnscentedTransformationModel() = 0;  /**   * Propagate a sigma point \f$\mathcal{X}_i\f$ through the function \f$f\f$.   *   * @param X \f$\mathcal{X}_i\f$; the sigma point.   * @param delta \f$\Delta t\f$; length of time through which to propagate   * the sigma point, if relevant.   *   * @return \f$\mathcal{Y}_i = f(\mathcal{X}_i,\Delta t)\f$   */  virtual indii::ml::aux::vector propagate(const indii::ml::aux::vector& X,      T delta = 0) = 0;};    }  }}template <class T>indii::ml::filter::UnscentedTransformationModel<T>::~UnscentedTransformationModel() {  //}#endif

⌨️ 快捷键说明

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