sfwa / ukf

Unscented Kalman Filter library for state and parameter estimation
http://au.tono.my/log/20130531-kalman-filter.html
MIT License
461 stars 172 forks source link

How should the measurement field names be in comparison with state field names? #67

Open tugrul512bit opened 1 year ago

tugrul512bit commented 1 year ago

For example, when there is a single measurement of orientation (a quaternion) and if states to be handled by the library are quaternion (as pan, tilt, roll), velocity of quaternion (as velocity of pan, tilt, roll), acceleration of quaternion, then should the fields be named like:

or different than measurement:

How does library connect the updates between measurement and states? Does naming become an issue?

Does it have tools to differentiate a quaternion to compute velocity / acceleration or user has to compute it?

Is there a minimal example to use for such a scenario?

Thank you for your time.