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!