Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

After all-hands we had a Kalman Filter meeting where we learned about state-space modelling and discussed preliminary goals for Kalman Filtering.

STATE-SPACE MODELLING

State-space modelling is a way of representing a physical system (often with high order diff eqs) by way of max first-order differential equations like so:

Mathinline
body\dot{x} = A\vec{x} + Bu(t)

Mathinline
bodyy = C \vec{x} + Du(t)

Where 

Mathinline
bodyA
Mathinline
bodyB
Mathinline
bodyC
, and 
Mathinline
bodyD
 are matrices.

Example:

Say we have a system that can be described with

Mathinline
body\ddot{\theta} = k\dot{\theta} + n\theta + u(t)

and

Mathinline
bodyy(t) = \theta

To model this, let 

Mathinline
bodyx = \left[_{\dot{\theta}}^{\theta}\right]
.

We need to find matrices 

Mathinline
bodyA
 and 
Mathinline
bodyB
 such that

Mathinline
body\left[_\ddot{\theta}^\dot{\theta}\right] = A\left[_\dot{\theta}^\theta\right] + Bu(t)
.

We find that 

Mathinline
bodyA = \begin{bmatrix} 0 & 1 \\ 0 & 0 \end{bmatrix}
.