Kalman-and-Bayesian-Filters-in-Python icon indicating copy to clipboard operation
Kalman-and-Bayesian-Filters-in-Python copied to clipboard

Kalman Filter book using Jupyter Notebook. Focuses on building intuition and experience, not formal proofs. Includes Kalman filters,extended Kalman filters, unscented Kalman filters, particle filters...

Results 133 Kalman-and-Bayesian-Filters-in-Python issues
Sort by recently updated
recently updated
newest added

Following code doesn't work under Windows: `cp -r ..\kf_book\ .\tmp\` Error message is: > 'cp' is not recognized as an internal or external command, operable program or batch file.

Good for beginner contribution

after going the Azure Link: "Page not found The Azure Notebooks preview will be retired on January 15th, 2021, and all user data will be destroyed. Please download your user...

Hi, Is it possible to change the interfaces of the UKF so that it matches the one from EKF or KF? For example: 1) __init__ method has different signature in...

Hi, In the example "Tracking and airplane", I think that you provided the pipeline for the KF: for i in range(int(20/dt)): z = radar.get_range() track.append((radar.pos, radar.vel, radar.alt)) rk.update(array([z]), HJacobian_at, hx)...

Wanted to start off with a big thank you for the helpful resource on Kalman Filters. In the Evaluating Filter Order section, there's discussion around how plotting the residual against...

bug

A link in 03-Gaussians.ipynb needs to be updated: The link in: A recent [opinion piece ](http://www.statslife.org.uk/opinion/2405-we-need-to-rethink-how-we-teach-statistics-from-the-ground-up)for the Royal Statistical Society called it a "dog's breakfast" [8]. Should be changed to:...

From a private email: I just wanted to point you to a few minor issues in Chapter 6 (I am reading this book online in my browser using Jupyter notebooks,...

Hi, I want to cite this book in my thesis. Is there a standard way for this? Perhaps in bibtex format even? I could not find any information on how...

Issue #97 asks how to reference the book. This guide specifies how to do it. https://guides.github.com/activities/citable-code/ For an example, matplotlib uses this, and has a nice badge: https://matplotlib.org/devdocs/citing.html I suggest...

Prediction line: predict(particles, u=(0.00, 1.414), std=(.2, .05)) When you propagate the particles diagonally to (x+1,x+1) , shouldn't you issue a prediction with an input argument u = (**np.pi/4** , 1.414)...

enhancement