agi gun
agi gun

Reputation: 61

What is the H matrix in a kalman filter

I am trying to write a kalman filter and I'm stuck on the H matrix. Right now I'm trying to get position and velocity data and I'm providing position, velocity and acceleration data. How do you set up an H matrix for this, or just in general?

Upvotes: 5

Views: 6834

Answers (1)

Stanislav
Stanislav

Reputation: 601

There are 2 good articles about Kalman filter I used to understand how it works and how matrices should be set up:

H matrix is the observation matrix.

enter image description here

It means, that if we have a simple model with variable position (x) and velocity (x') and our sensor provides us observations for positions (z), that we will have: enter image description here enter image description here

Upvotes: 3

Related Questions