Sample EKFilter implementation class, very brief. More...
Protected Member Functions | |
void | makeMeasure () |
Actual measurement function . Fills in z. | |
void | makeProcess () |
Actual process . Fills in new x by using old x. |
Sample EKFilter implementation class, very brief.
Definition at line 10 of file ekfilter.cpp.
void sample_A::makeMeasure | ( | ) | [inline, protected, virtual] |
Actual measurement function . Fills in z.
This function must be overridden, since it is the core of the measurement system. At the time this will be called, x contains the predicted state (a priori state estimate), which is the one that must be used with the measurement function.
simulate()
, which does a calculation and then undoes it before returning the result. Implements Kalman::EKFilter< T, BEG, OQ, OVR, DBG >.
Definition at line 12 of file ekfilter.cpp.
void sample_A::makeProcess | ( | ) | [inline, protected, virtual] |
Actual process . Fills in new x by using old x.
This function must be overridden, since it is the core of the system process.
predict()
, which does a calculation and then undoes it before returning the result. Implements Kalman::EKFilter< T, BEG, OQ, OVR, DBG >.
Definition at line 13 of file ekfilter.cpp.