/* @file KalmanFilterObservable.cpp */ #include "KalmanFilterObservable.hpp" #include "print_eigen.hpp" #include "indentlog/scope.hpp" namespace xo { using xo::scope; using logutil::matrix; using xo::xtag; namespace kalman { KalmanFilterObservable KalmanFilterObservable::keep_all(MatrixXd H, MatrixXd R) { VectorXi keep(H.rows()); for (uint32_t j=0; j"; } /*display*/ std::string KalmanFilterObservable::display_string() const { std::stringstream ss; this->display(ss); return ss.str(); } /*display_string*/ } /*namespace kalman*/ } /*namespace xo*/ /* end KalmanFilterObservable.cpp */