Safe Haskell | None |
---|---|
Language | Haskell2010 |
Numerical.Integration
Synopsis
- integration :: (CDouble -> CDouble) -> CDouble -> CDouble -> CDouble -> CInt -> IO IntegralResult
- data IntegralResult = IntegralResult {}
Documentation
Arguments
:: (CDouble -> CDouble) | integrand |
-> CDouble | lower bound |
-> CDouble | upper bound |
-> CDouble | desired relative error |
-> CInt | number of subdivisions |
-> IO IntegralResult | value, error estimate, error code |
Numerical integration.
data IntegralResult Source #
Instances
Show IntegralResult Source # | |
Defined in Numerical.Integration Methods showsPrec :: Int -> IntegralResult -> ShowS # show :: IntegralResult -> String # showList :: [IntegralResult] -> ShowS # |