diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-09-13 10:27:17 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-09-13 10:27:17 +0000 |
commit | 620d5008ea9a931a91907cd0c902bb64f005121f (patch) | |
tree | 7dd55acefdc49cbe1513fb0b1fbf60f954d3d364 /lib/GSL/Special/Clausen.hs | |
parent | 0ff13d993b880739295de343bca62f06fac5ca0c (diff) |
automatic google search in the docs for the special functions
Diffstat (limited to 'lib/GSL/Special/Clausen.hs')
-rw-r--r-- | lib/GSL/Special/Clausen.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/GSL/Special/Clausen.hs b/lib/GSL/Special/Clausen.hs index 33da421..57c8878 100644 --- a/lib/GSL/Special/Clausen.hs +++ b/lib/GSL/Special/Clausen.hs | |||
@@ -9,7 +9,7 @@ Portability : uses ffi | |||
9 | 9 | ||
10 | Wrappers for selected functions described at: | 10 | Wrappers for selected functions described at: |
11 | 11 | ||
12 | <http://www.gnu.org/software/gsl/manual/html_node/Clausen-Functions.html> | 12 | <http://www.google.com/search?q=gsl_sf_clausen.h&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
13 | 13 | ||
14 | -} | 14 | -} |
15 | ------------------------------------------------------------ | 15 | ------------------------------------------------------------ |
@@ -23,11 +23,15 @@ import Foreign(Ptr) | |||
23 | import GSL.Special.Internal | 23 | import GSL.Special.Internal |
24 | 24 | ||
25 | -- | wrapper for int gsl_sf_clausen_e(double x,gsl_sf_result* result); | 25 | -- | wrapper for int gsl_sf_clausen_e(double x,gsl_sf_result* result); |
26 | -- | ||
27 | -- <http://www.google.com/search?q=gsl_sf_clausen_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
26 | clausen_e :: Double -> (Double,Double) | 28 | clausen_e :: Double -> (Double,Double) |
27 | clausen_e x = createSFR "clausen_e" $ gsl_sf_clausen_e x | 29 | clausen_e x = createSFR "clausen_e" $ gsl_sf_clausen_e x |
28 | foreign import ccall "clausen.h gsl_sf_clausen_e" gsl_sf_clausen_e :: Double -> Ptr Double -> IO(Int) | 30 | foreign import ccall "clausen.h gsl_sf_clausen_e" gsl_sf_clausen_e :: Double -> Ptr Double -> IO(Int) |
29 | 31 | ||
30 | -- | wrapper for double gsl_sf_clausen(double x); | 32 | -- | wrapper for double gsl_sf_clausen(double x); |
33 | -- | ||
34 | -- <http://www.google.com/search?q=gsl_sf_clausen&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
31 | clausen :: Double -> Double | 35 | clausen :: Double -> Double |
32 | clausen = gsl_sf_clausen | 36 | clausen = gsl_sf_clausen |
33 | foreign import ccall "clausen.h gsl_sf_clausen" gsl_sf_clausen :: Double -> Double | 37 | foreign import ccall "clausen.h gsl_sf_clausen" gsl_sf_clausen :: Double -> Double |