summaryrefslogtreecommitdiff
path: root/lib/Numeric/GSL/Special/Dawson.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2009-06-19 07:37:05 +0000
committerAlberto Ruiz <aruiz@um.es>2009-06-19 07:37:05 +0000
commita9722cf16fe322985c998ab290cf03213b539e49 (patch)
treefc06b55ff719a7908eae23748bacfe140ce5374f /lib/Numeric/GSL/Special/Dawson.hs
parentf589b9e673c3aef62834b3e2e88d96226bb7c24f (diff)
minor changes
Diffstat (limited to 'lib/Numeric/GSL/Special/Dawson.hs')
-rw-r--r--lib/Numeric/GSL/Special/Dawson.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Numeric/GSL/Special/Dawson.hs b/lib/Numeric/GSL/Special/Dawson.hs
index 37cc68e..0bddbaf 100644
--- a/lib/Numeric/GSL/Special/Dawson.hs
+++ b/lib/Numeric/GSL/Special/Dawson.hs
@@ -20,9 +20,11 @@ module Numeric.GSL.Special.Dawson(
20import Foreign(Ptr) 20import Foreign(Ptr)
21import Foreign.C.Types(CInt) 21import Foreign.C.Types(CInt)
22import Numeric.GSL.Special.Internal 22import Numeric.GSL.Special.Internal
23
23dawson_e :: Double -> (Double,Double) 24dawson_e :: Double -> (Double,Double)
24dawson_e x = createSFR "dawson_e" $ gsl_sf_dawson_e x 25dawson_e x = createSFR "dawson_e" $ gsl_sf_dawson_e x
25foreign import ccall "gsl_sf_dawson_e" gsl_sf_dawson_e :: Double -> Ptr () -> IO CInt 26foreign import ccall "gsl_sf_dawson_e" gsl_sf_dawson_e :: Double -> Ptr () -> IO CInt
27
26dawson :: Double -> Double 28dawson :: Double -> Double
27dawson = gsl_sf_dawson 29dawson = gsl_sf_dawson
28foreign import ccall "gsl_sf_dawson" gsl_sf_dawson :: Double -> Double 30foreign import ccall "gsl_sf_dawson" gsl_sf_dawson :: Double -> Double