A general-purpose F# library providing Euler and RK4 ODE solvers for scalar and vector ODEs.
$ dotnet add package ODELibA small F# library for solving ordinary differential equations (ODEs) numerically using:
open ODELib
let f t y = [| -2.0 * y.[0] + sin t |]
let results = RK4.rk4 f 0.01 1000 (0.0, [|1.0|])
printfn "%A" results