This folder consists of various methods to estimate discrete-time, linear, time-varying equations. This sort of problem is called a Linear Gaussian (LG) model.
They can be characterized as the following:
Where is a index in discrete time.
-
is the state of the system
-
is the initial state of the system
-
input to the system. might have a mapping to
-
process noise
-
measurement
-
measurement noise
-
is the state transition matrix
-
is the observation matirx which maps our state to our measurement
The problem for state estimation is as follows: The problem of state estimation is to come up with an estimate of the true state of a system, at one or more timesteps, , given knowledge of the initial state, , a sequence of measurements a sequence of inputs as well as knowledge of the system’s motion and observation models
There are roughly two paradigms to solving this:
- Bayesian Inference prior, posterior paradigm where we are updating a prior density (based on our initial state, inputs, and motion model) with our measurements to produce a posterior estimate
- Maximum A Posteriori here we are using optimization to find the most likely posterior state given the information we have.
This problem can be solved with many approaches, one of them being the Kalman Filter
