How I could specify the measurement noise matrix for EKF Kalman filter trackingEKF class ?
4 次查看(过去 30 天)
显示 更早的评论
I mean covariance matrix of random noise wk
0 个评论
采纳的回答
Elad Kivelevitch
2019-5-31
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 个评论
Elad Kivelevitch
2019-6-2
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Tracking and Sensor Fusion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!