initial implementation
This commit is contained in:
commit
8454b48956
32 changed files with 2781 additions and 0 deletions
27
KalmanFilterSpec.cpp
Normal file
27
KalmanFilterSpec.cpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/* @file KalmanFilterSpec.cpp */
|
||||
|
||||
#include "KalmanFilterSpec.hpp"
|
||||
#include "indentlog/scope.hpp"
|
||||
|
||||
namespace xo {
|
||||
using xo::tostr;
|
||||
using xo::xtag;
|
||||
|
||||
namespace kalman {
|
||||
void
|
||||
KalmanFilterSpec::display(std::ostream & os) const
|
||||
{
|
||||
os << "<KalmanFilterSpec"
|
||||
<< xtag("start_ext", start_ext_)
|
||||
<< ">";
|
||||
} /*display*/
|
||||
|
||||
std::string
|
||||
KalmanFilterSpec::display_string() const
|
||||
{
|
||||
return tostr(*this);
|
||||
} /*display_string*/
|
||||
} /*namespace kalman*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end KalmanFilterSpec.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue