Question concerning the extended kalman filter

  • Context: Graduate 
  • Thread starter Thread starter Anonymous123
  • Start date Start date
  • Tags Tags
    Filter Kalman filter
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
Anonymous123
Messages
1
Reaction score
0
Good day,

i read a lot about the kalman filter and the extended kalman filter, but some things are still not clear to me. E.g. I have one question concerning the jacobian matrix of the measurement matrix h. I want to point out my problem with a concrete example:

A vehicle is represented by the following state vector: [tex]x=\begin{pmatrix} x \\ y \\ \varphi \\ v \end{pmatrix}[/tex] (position, rotation and speed).

The equations of the motion model are the following ones:
[tex] x_x = x_x + x_v \cdot sin(x_\varphi);[/tex]
[tex] x_y = x_y + x_v \cdot cos(x_\varphi);[/tex]

x y phi and v can every second be measured with a failure.

To remind Extended Kalman Filter: http://www.embedded-world.eu/fileadmin/user_upload/pdf/batterie2011/Armbruster.pdf (Slide 9)


Question: As visible on the slide 9, I have to calculate the jacobian matrix H for my measurement-function h. The slide points that very well out, in the correction step is H the jacobian matrix and h is my measurement function.

So if I want to consider all elements of the measurement vektor, h would be in my opinion the following matrix:

[tex]h = \begin{pmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{pmatrix}[/tex]

because

[tex]z_k = h*x_t = \begin{pmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{pmatrix} * \begin{pmatrix} x_{t,x} \\ x_{t,y} \\ x_{t,\varphi} \\ x_{t,v} \end{pmatrix}[/tex]

(x_t is the current measurement vector)
Therefore [tex]z_k = x_t[/tex]

But in that case the jacobian matrix [tex]J(h)=H[/tex] becomes

[tex]H = \begin{pmatrix} 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{pmatrix}[/tex]

And this means, that the whole correction step of the EKF does not work, because the Kalman gain-matrix also becomes a zero matrix (See again slide 9, there are some matrix multiplications where H is used. When H contains just zeros the gain [tex]K_K[/tex] also becomes zero).

So to conclude: I think I haven't understood the meaning of h and how to calculate H. I appreciate any help and apologize for my english, because I am not a native speaker :)
 
Physics news on Phys.org
http://www.google.com/url?sa=t&rct=...sg=AFQjCNFjl1YZdkoZZiaJ7-NMEi3vDKnU5Q&cad=rja

Anonymous123 said:
So if I want to consider all elements of the measurement vektor, h would be in my opinion the following matrix:

[tex]h = \begin{pmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \end{pmatrix}[/tex]

In the treatments of the extended Kalman filter that I can read (such as http://www.google.com/url?sa=t&rct=...sg=AFQjCNFjl1YZdkoZZiaJ7-NMEi3vDKnU5Q&cad=rja
), [itex]h[/itex] is a vector valued function, not a matrix. In you example it would be the function [itex]h(x,y,\varphi,v) = (x,y,\varphi,v)[/itex]. So the Jacobian of this function is not found by differentiating constants.