| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Math.Integrators
Description
Math integrators if a high level module for different ODE integrators This module provides high-level wrappers over different integration methods
- integrateV :: PrimMonad m => Integrator a -> a -> Vector Double -> m (Vector a)
Documentation
Arguments
| :: PrimMonad m | |
| => Integrator a | Internal integrator |
| -> a | initial value |
| -> Vector Double | vector of time points |
| -> m (Vector a) | vector of solution |
Integrate ODE equation using fixed steps set by a vector, and returns a vector of solutions corrensdonded to times that was requested. It takes Vector of time points as a parameter and returns a vector of results