-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | A simple integration function to integrate a complex-valued complex functions -- -- Small and simple library for integration of complex functions. -- Integrates functions along straight lines. Compatible with real-valued -- functions. Uses Simpson's method. @package complex-integrate @version 0.1 -- | Integration of complex and real functions along straight lines module Data.Complex.Integrate -- | Integration of complex function using Simpson's rule integrate :: Fractional v => (v -> v) -> Integer -> v -> v -> v