Skip to content

Commit

Permalink
Merge e3c2f71 into 1f9475e
Browse files Browse the repository at this point in the history
  • Loading branch information
rjw57 committed Apr 13, 2016
2 parents 1f9475e + e3c2f71 commit 9ae34e1
Show file tree
Hide file tree
Showing 4 changed files with 234 additions and 100 deletions.
11 changes: 11 additions & 0 deletions doc/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@ of the documentation.
State estimation
----------------

.. autoclass:: starman.GaussianStateEstimation
:members:
:member-order: bysource

.. autoclass:: starman.KalmanFilter
:members:
:member-order: bysource

.. autofunction:: starman.rts_smooth

.. autodata:: starman.stateestimation.LARGE_COVARIANCE

Feature association
-------------------

Expand All @@ -30,3 +36,8 @@ Helper functions for linear systems

.. automodule:: starman.linearsystem
:members:

Exceptions
----------

.. autoexception:: starman.exc.ParameterError
2 changes: 1 addition & 1 deletion starman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

from .kalman import KalmanFilter
from .stateestimation import KalmanFilter, GaussianStateEstimation
from .rts import rts_smooth
from .stats import MultivariateNormal
from .slh import slh_associate
8 changes: 8 additions & 0 deletions starman/exc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""
Exceptions used by starman.
"""

class ParameterError(ValueError):
pass

0 comments on commit 9ae34e1

Please sign in to comment.