MCPcopy Create free account
hub / github.com/denyssene/SimpleKalmanFilter / SimpleKalmanFilter

Method SimpleKalmanFilter

src/SimpleKalmanFilter.cpp:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9#include <math.h>
10
11SimpleKalmanFilter::SimpleKalmanFilter(float mea_e, float est_e, float q)
12{
13 _err_measure = mea_e;
14 _err_estimate = est_e;
15 _q = q;
16}
17
18float SimpleKalmanFilter::updateEstimate(float mea)
19{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected