numeric-ode-0.0.0.0: Ode solvers

Safe HaskellNone
LanguageHaskell2010

Math.Integrators

Description

Math integrators if a high level module for different ODE integrators This module provides high-level wrappers over different integration methods

Synopsis

Documentation

integrateV Source #

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