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

조회 수: 1 (최근 30일)
I mean covariance matrix of random noise wk

채택된 답변

Elad Kivelevitch
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
Igor Korotayev
Igor Korotayev 2019년 6월 2일
Thank you Elad, it is very nice to hear fromyou in such a way
Good luck
Igor
Elad Kivelevitch
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개)

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by