Popularity
9.1
Growing
Activity
0.0
Stable
26
39
3

Monthly Downloads: 18
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Math     Statistics     Numerical    

estimator alternatives and similar packages

Based on the "Math" category.
Alternatively, view estimator alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of estimator or a related project?

Add another 'Math' Package

README

State-space estimation algorithms

Build Status

The goal of this library is to simplify implementation and use of state-space estimation algorithms, such as Kalman Filters. The interface for constructing models is isolated as much as possible from the specifics of a given algorithm, so swapping out a Kalman Filter for a Bayesian Particle Filter should involve a minimum of effort.

This implementation is designed to support symbolic types, such as from sbv or ivory. As a result you can generate code in another language, such as C, from a model written using this package; or run static analyses on your model.

Also included is a sophisticated sensor fusion example in Numeric.Estimator.Model.SensorFusion, which may be useful in its own right.