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!