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

更多回答(0 个)

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by