numerical-integration: Numerical integration.

[ bsd3, library, numerical ] [ Propose Tags ]

One-dimensional numerical integration using the NumericalIntegration C++ library.


[Skip to Readme]

Modules

[Last Documentation]

  • Numerical
    • Numerical.Integration

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.1.0, 0.1.2.0, 0.1.2.1, 0.1.2.2, 0.1.2.3
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5) [details]
License BSD-3-Clause
Copyright 2023 Stéphane Laurent
Author Stéphane Laurent
Maintainer laurent_step@outlook.fr
Category Numerical
Home page https://github.com/stla/numerical-integration#readme
Source repo head: git clone https://github.com/stla/numerical-integration
Uploaded by stla at 2023-08-31T00:51:31Z
Distributions NixOS:0.1.2.3
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 167 total (18 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2023-08-31 [all 2 reports]

Readme for numerical-integration-0.1.0.0

[back to package description]

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