sde-solver alternatives and similar packages
Based on the "Math" category.
Alternatively, view sde-solver alternatives based on common mentions on social networks and blogs.
-
vector
An efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework . -
hgeometry
HGeometry is a library for computing with geometric objects in Haskell. It defines basic geometric types and primitives, and it implements some geometric data structures and algorithms. -
dimensional
Dimensional library variant built on Data Kinds, Closed Type Families, TypeNats (GHC 7.8+). -
numhask
A haskell numeric prelude, providing a clean structure for numbers and operations that combine them. -
poly
Fast polynomial arithmetic in Haskell (dense and sparse, univariate and multivariate, usual and Laurent) -
eigen
Haskel binding for Eigen library. Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of sde-solver or a related project?
README
Distributed SDE solver
This is a program which evaluates Stochastic Differential Equations (SDEs) distributed over multiple multi-core nodes.
The built-in combinators can be used as a toolbox providing utilities for solving different kind of equations, but also in a lot of different ways. For example you can evaluate in any monad or using any suitable RNG.
Equations are given on a standard format and then solved using the /withSolver/ function, resulting in a scalar value at the end of the interval.
Included in the package are ways of doing distributed calculations over an MPI cluster, or optionally only using the local solver with built in parallelization. Two SDE instances have been implemented; geometric brownian motion and the Langevin equation. See the haddock documentation of the DSDE module for examples.
The main interface is accessible through Numeric.DSDE which provides various way of solving generic problems. This module supports either local or distributed calculations in the IO monad and gathering the results as a distribution. Under the surface there is also a working pure implementation for monadic environments, using a pure mersenne twister PRNG.
Example
let r = 1.0
sigma = 0.1
y_0 = 3.0
end = 0.2
stepSize = 0.01
runs = 1000
withSolver Milstein (distribute (Langevin r sigma) y_0 end stepSize runs) ⤜
writeResult "out"