How I could specify the measurement noise matrix for EKF Kalman filter trackingEKF class ?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Igor Korotayev
el 6 de Feb. de 2019
Comentada: Elad Kivelevitch
el 2 de Jun. de 2019
I mean covariance matrix of random noise wk
0 comentarios
Respuesta aceptada
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
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Tracking and Sensor Fusion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!