Metadata-Version: 2.0
Name: norma
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/robdmc/norma.git
Author: Rob deCarvalho
Author-email: unlisted@unlisted.net
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: pandas
Requires-Dist: scipy
Provides-Extra: dev
Requires-Dist: Sphinx; extra == 'dev'
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: mock; extra == 'dev'
Requires-Dist: nose; extra == 'dev'
Requires-Dist: sphinx-rtd-theme; extra == 'dev'
Requires-Dist: wheel; extra == 'dev'

# Norma:  A tool for multivariate normal distributions

This tool provides a conenient interface to the multivariate
normal distribution.  It is very much a work in progress, and not
ready for public consumption.

There is not currently much documentation for norma, but if you want
to play with it, simply import and instantiate the JointNormal class.

```python
from norma.joint_normal import JointNormal
```

The long term vision for Norma includes improving the existing
JointNormal interface as well as implementing a square-root-information
implementation of the Kalman filter.


