Skip to content

sor4chi/kalman-filter-simulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 5, 2024
adb8363 · Sep 5, 2024

History

1 Commit
Sep 5, 2024
Sep 5, 2024
Sep 5, 2024
Sep 5, 2024
Sep 5, 2024
Sep 5, 2024

Repository files navigation

Kalman Filter Simulator

This is a simple simulator for the Kalman Filter algorithm.

YOu can configure the parameters of the simulation in the src/main.rs file.

let total_time = 10.0;
let dt = 0.1;
let velocity = 1.0;
let sensor_noise_stddev: f64 = 2.0;
let r = sensor_noise_stddev.powi(2);
let q = 0.01;

The simulator will generate a noisy signal and apply the Kalman Filter to estimate the true signal.

To run the simulation, execute the following command:

cargo run --release

Showcase

Kalman Filter Simulator

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages