How I could specify the measurement noise matrix for EKF Kalman filter trackingEKF class ?

1 visualización (últimos 30 días)
I mean covariance matrix of random noise wk

Respuesta aceptada

Elad Kivelevitch
Elad Kivelevitch el 31 de Mayo de 2019
Hi Igor,
You can specify it on construction using:
ekf = trackingEKF('MeasurementNoise',R);
Alternatively, you can specify it after construction using:
ekf = trackingEKF;
ekf.MeasurementNoise = R;
I hope this helps,
Elad
  2 comentarios
Igor Korotayev
Igor Korotayev el 2 de Jun. de 2019
Thank you Elad, it is very nice to hear fromyou in such a way
Good luck
Igor
Elad Kivelevitch
Elad Kivelevitch el 2 de Jun. de 2019
Thanks Igor. It's very nice to hear from you too. I hope all is well. My best regards to everyone we worked with together.
Elad

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by