unscentedtransformationmodel.hpp

来自「dysii is a C++ library for distributed p」· HPP 代码 · 共 51 行

HPP
51
字号
#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 + =
减小字号Ctrl + -
显示快捷键?