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

📄 rauchtungstriebelsmoothermodel.hpp

📁 dysii is a C++ library for distributed probabilistic inference and learning in large-scale dynamical
💻 HPP
字号:
#ifndef INDII_ML_FILTER_RAUCHTUNGSTRIEBELSMOOTHERMODEL_HPP#define INDII_ML_FILTER_RAUCHTUNGSTRIEBELSMOOTHERMODEL_HPP#include "KalmanFilterModel.hpp"namespace indii {  namespace ml {    namespace filter {/** * RauchTungStriebelSmoother 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 RauchTungStriebelSmootherModel : virtual public KalmanFilterModel<T> {public:  /**   * Destructor.   */  virtual ~RauchTungStriebelSmootherModel() = 0;  /**   * Perform smoothing update.   *   * @param p_xtnp1_ytT \f$P\big(\mathbf{x}(t_{n+1})\, |   * \,\mathbf{y}(t_1),\ldots,\mathbf{y}(t_T)\big)\f$;   * @param p_xtnp1_ytn \f$P\big(\mathbf{x}(t_{n+1})\, |   * \,\mathbf{y}(t_1),\ldots,\mathbf{y}(t_n)\big)\f$   * @param p_xtn_ytn \f$P\big(\mathbf{x}(t_n)\, |   * \,\mathbf{y}(t_1),\ldots,\mathbf{y}(t_n)\big)\f$; @param delta   * \f$t_{n+1} - t_n\f$;   *   * @return \f$P\big(\mathbf{x}(t_n)\, |   * \,\mathbf{y}(t_1),\ldots,\mathbf{y}(t_T)\big)\f$   */  virtual indii::ml::aux::GaussianPdf p_xtn_ytT(      const indii::ml::aux::GaussianPdf& p_xtnp1_ytT,      const indii::ml::aux::GaussianPdf& p_xtnp1_ytn,      const indii::ml::aux::GaussianPdf& p_xtn_ytn,      const T delta) = 0;};    }  }}template <class T>indii::ml::filter::RauchTungStriebelSmootherModel<T>::~RauchTungStriebelSmootherModel() {  //}#endif

⌨️ 快捷键说明

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