@hackage numerical-integration0.1.0.2
Numerical integration.
Categories
License
BSD-3-Clause
Maintainer
laurent_step@outlook.fr
Links
Versions
Installation
Dependencies (1)
Dependents (1)
@hackage/BesselJ
numerical-integration
One-dimensional numerical integration using the 'NumericalIntegration' C++ library.
Example. Integrate x² between 0 and 1 with desired relative error 1e-10 and using 200 subdivisions.
example :: IO (Double, Double, Int) -- value, error estimate, error code
example = integration (\x -> x*x) 0 1 1e-10 200