kalman.hpp

来自「This collection of C++ templates wraps t」· HPP 代码 · 共 14 行

HPP
14
字号

#ifndef ULAPACK_KALMAN_FILTER_HPP_
#define ULAPACK_KALMAN_FILTER_HPP_

namespace ulapack {
	namespace ublas = boost::numeric::ublas;

	void kalman_update(Vector &x, Matrix &P, 
		const Vector &innov, const Matrix &R, const Matrix &H);

} // namespace ulapack

#endif

⌨️ 快捷键说明

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