Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
96129 views
1
"""Copyright 2015 Roger R Labbe Jr.
2
3
FilterPy library.
4
http://github.com/rlabbe/filterpy
5
6
Documentation at:
7
https://filterpy.readthedocs.org
8
9
Supporting book at:
10
https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python
11
12
This is licensed under an MIT license. See the readme.MD file
13
for more information.
14
"""
15
from __future__ import (absolute_import, division, print_function,
16
unicode_literals)
17
18
__all__=["stats"]
19
20
from .stats import *
21
22
23