rlabbe / Kalman-and-Bayesian-Filters-in-Python

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, and more. All exercises include solutions.
Other
16.42k stars 4.15k forks source link

Typo: function called a variable #495

Open maxschommer opened 4 months ago

maxschommer commented 4 months ago

https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python/blob/9e3d2f6ed023d937587cf2ef2ecfbf7afc3d8054/03-Gaussians.ipynb#L1581

"We will focus on the norm variable" should be corrected to "we will focus on the norm function"

maxschommer commented 4 months ago

Perhaps it should be just called an "object", since while it is being called as a function in the example in the text to generate a frozen distribution, it also has attributes and other methods which can be used.