unscentedtransformationdefaults.hpp

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

HPP
44
字号
#ifndef INDII_ML_FILTER_UNSCENTEDTRANSFORMATIONDEFAULTS#define INDII_ML_FILTER_UNSCENTEDTRANSFORMATIONDEFAULTSnamespace indii {  namespace ml {    namespace filter {/** * Default parameter settings for UnscentedTransformation. * * @author Lawrence Murray <lawrence@indii.org> * @version $Rev: 274 $ * @date $Date: 2007-07-18 13:37:55 +0100 (Wed, 18 Jul 2007) $ * * These defaults are based on values given in @ref Wan2000 "Wan & van der * Merwe (2000)". */class UnscentedTransformationDefaults {public:    /**     * \f$\alpha\f$; spread of the sigma points about     * \f$\mathbf{\bar{x}}\f$.     */    static const double ALPHA;    /**     * \f$\beta\f$; incorporates prior knowledge of the distribution of     * \f$\mathbf{x}\f$. Default value is optimal for Gaussian distributions.     */    static const double BETA;    /**     * \f$\kappa\f$; secondary scaling parameter. Default value is usual.     */    static const double KAPPA;};    }  }}#endif

⌨️ 快捷键说明

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