summaryrefslogtreecommitdiff
path: root/lib/GSL/Special/Dawson.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-09-13 10:27:17 +0000
committerAlberto Ruiz <aruiz@um.es>2007-09-13 10:27:17 +0000
commit620d5008ea9a931a91907cd0c902bb64f005121f (patch)
tree7dd55acefdc49cbe1513fb0b1fbf60f954d3d364 /lib/GSL/Special/Dawson.hs
parent0ff13d993b880739295de343bca62f06fac5ca0c (diff)
automatic google search in the docs for the special functions
Diffstat (limited to 'lib/GSL/Special/Dawson.hs')
-rw-r--r--lib/GSL/Special/Dawson.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/GSL/Special/Dawson.hs b/lib/GSL/Special/Dawson.hs
index 54671e1..69d0127 100644
--- a/lib/GSL/Special/Dawson.hs
+++ b/lib/GSL/Special/Dawson.hs
@@ -9,7 +9,7 @@ Portability : uses ffi
9 9
10Wrappers for selected functions described at: 10Wrappers for selected functions described at:
11 11
12<http://www.gnu.org/software/gsl/manual/html_node/Dawson-Function.html> 12<http://www.google.com/search?q=gsl_sf_dawson.h&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky>
13 13
14-} 14-}
15------------------------------------------------------------ 15------------------------------------------------------------
@@ -23,11 +23,15 @@ import Foreign(Ptr)
23import GSL.Special.Internal 23import GSL.Special.Internal
24 24
25-- | wrapper for int gsl_sf_dawson_e(double x,gsl_sf_result* result); 25-- | wrapper for int gsl_sf_dawson_e(double x,gsl_sf_result* result);
26--
27-- <http://www.google.com/search?q=gsl_sf_dawson_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky>
26dawson_e :: Double -> (Double,Double) 28dawson_e :: Double -> (Double,Double)
27dawson_e x = createSFR "dawson_e" $ gsl_sf_dawson_e x 29dawson_e x = createSFR "dawson_e" $ gsl_sf_dawson_e x
28foreign import ccall "dawson.h gsl_sf_dawson_e" gsl_sf_dawson_e :: Double -> Ptr Double -> IO(Int) 30foreign import ccall "dawson.h gsl_sf_dawson_e" gsl_sf_dawson_e :: Double -> Ptr Double -> IO(Int)
29 31
30-- | wrapper for double gsl_sf_dawson(double x); 32-- | wrapper for double gsl_sf_dawson(double x);
33--
34-- <http://www.google.com/search?q=gsl_sf_dawson&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky>
31dawson :: Double -> Double 35dawson :: Double -> Double
32dawson = gsl_sf_dawson 36dawson = gsl_sf_dawson
33foreign import ccall "dawson.h gsl_sf_dawson" gsl_sf_dawson :: Double -> Double 37foreign import ccall "dawson.h gsl_sf_dawson" gsl_sf_dawson :: Double -> Double