complex-integrate: A simple integration function to integrate a complex-valued complex functions

[ library, math, public-domain ] [ Propose Tags ]

Small and simple library for integration of complex functions. Integrates functions along straight lines. Compatible with real-valued functions. Uses Simpson's method.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 1.0.0
Dependencies base (>=4.3.1.0 && <5) [details]
License LicenseRef-PublicDomain
Author Mark Safronov a.k.a. hijarian
Maintainer hijarian@gmail.com
Category Math
Home page https://github.com/hijarian/complex-integrate
Source repo head: git clone https://github.com/hijarian/complex-integrate
Uploaded by MarkSafronov at 2012-01-21T22:25:12Z
Distributions NixOS:1.0.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1972 total (15 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for complex-integrate-1.0.0

[back to package description]

complex-integrate

Small and simple library for integration of complex functions. Integrates functions along straight lines. Compatible with real-valued functions. Uses Simpson's method.

As of Oct, 2011 I could not find any haskell package which could provide me with something so simple as this.

cabalized: install with

$ cabal install complex-integrate

Provides you with only a single function:

integrate f n a b

which integrates f along a line between points a and b while dividing this line in n segments, providing accuracy.