How I could specify the measurement noise matrix for EKF Kalman filter trackingEKF class ?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Igor Korotayev
il 6 Feb 2019
Commentato: Elad Kivelevitch
il 2 Giu 2019
I mean covariance matrix of random noise wk
0 Commenti
Risposta accettata
Elad Kivelevitch
il 31 Mag 2019
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 Commenti
Elad Kivelevitch
il 2 Giu 2019
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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Tracking and Sensor Fusion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!