BesselJ-0.2.0.1: Bessel J-function, Anger J-function, Weber E-function, and Anger-Weber function.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Math.AngerWeber

Synopsis

Documentation

data AngerWeberResult Source #

Data type to store the result of a computation of the Anger-Weber function. It is based on a computation of the Bessel J-function and a computation of the Anger J-function. The fields are _result for the value, _besselResult for the result of the computation of the Bessel J-function, and _angerResult for the result of the computation of the Anger J-function.

Instances

Instances details
Show AngerWeberResult Source # 
Instance details

Defined in Math.AngerWeber

angerWeber Source #

Arguments

:: Complex Double

order, non-integer complex number with real part larger than -0.5

-> Complex Double

the variable, a complex number

-> Double

target relative accuracy for the integrals, e.g. 1e-5

-> Int

number of subdivisions for the integrals, e.g. 5000

-> IO AngerWeberResult

result

Anger-Weber function.