diff options
Diffstat (limited to 'lib/GSL/Special/Laguerre.hs')
-rw-r--r-- | lib/GSL/Special/Laguerre.hs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/GSL/Special/Laguerre.hs b/lib/GSL/Special/Laguerre.hs index 61f366b..f5ab85e 100644 --- a/lib/GSL/Special/Laguerre.hs +++ b/lib/GSL/Special/Laguerre.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/Laguerre-Functions.html> | 12 | <http://www.google.com/search?q=gsl_sf_laguerre.h&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
13 | 13 | ||
14 | -} | 14 | -} |
15 | ------------------------------------------------------------ | 15 | ------------------------------------------------------------ |
@@ -29,41 +29,57 @@ import Foreign(Ptr) | |||
29 | import GSL.Special.Internal | 29 | import GSL.Special.Internal |
30 | 30 | ||
31 | -- | wrapper for int gsl_sf_laguerre_1_e(double a,double x,gsl_sf_result* result); | 31 | -- | wrapper for int gsl_sf_laguerre_1_e(double a,double x,gsl_sf_result* result); |
32 | -- | ||
33 | -- <http://www.google.com/search?q=gsl_sf_laguerre_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
32 | laguerre_1_e :: Double -> Double -> (Double,Double) | 34 | laguerre_1_e :: Double -> Double -> (Double,Double) |
33 | laguerre_1_e a x = createSFR "laguerre_1_e" $ gsl_sf_laguerre_1_e a x | 35 | laguerre_1_e a x = createSFR "laguerre_1_e" $ gsl_sf_laguerre_1_e a x |
34 | foreign import ccall "laguerre.h gsl_sf_laguerre_1_e" gsl_sf_laguerre_1_e :: Double -> Double -> Ptr Double -> IO(Int) | 36 | foreign import ccall "laguerre.h gsl_sf_laguerre_1_e" gsl_sf_laguerre_1_e :: Double -> Double -> Ptr Double -> IO(Int) |
35 | 37 | ||
36 | -- | wrapper for int gsl_sf_laguerre_2_e(double a,double x,gsl_sf_result* result); | 38 | -- | wrapper for int gsl_sf_laguerre_2_e(double a,double x,gsl_sf_result* result); |
39 | -- | ||
40 | -- <http://www.google.com/search?q=gsl_sf_laguerre_2_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
37 | laguerre_2_e :: Double -> Double -> (Double,Double) | 41 | laguerre_2_e :: Double -> Double -> (Double,Double) |
38 | laguerre_2_e a x = createSFR "laguerre_2_e" $ gsl_sf_laguerre_2_e a x | 42 | laguerre_2_e a x = createSFR "laguerre_2_e" $ gsl_sf_laguerre_2_e a x |
39 | foreign import ccall "laguerre.h gsl_sf_laguerre_2_e" gsl_sf_laguerre_2_e :: Double -> Double -> Ptr Double -> IO(Int) | 43 | foreign import ccall "laguerre.h gsl_sf_laguerre_2_e" gsl_sf_laguerre_2_e :: Double -> Double -> Ptr Double -> IO(Int) |
40 | 44 | ||
41 | -- | wrapper for int gsl_sf_laguerre_3_e(double a,double x,gsl_sf_result* result); | 45 | -- | wrapper for int gsl_sf_laguerre_3_e(double a,double x,gsl_sf_result* result); |
46 | -- | ||
47 | -- <http://www.google.com/search?q=gsl_sf_laguerre_3_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
42 | laguerre_3_e :: Double -> Double -> (Double,Double) | 48 | laguerre_3_e :: Double -> Double -> (Double,Double) |
43 | laguerre_3_e a x = createSFR "laguerre_3_e" $ gsl_sf_laguerre_3_e a x | 49 | laguerre_3_e a x = createSFR "laguerre_3_e" $ gsl_sf_laguerre_3_e a x |
44 | foreign import ccall "laguerre.h gsl_sf_laguerre_3_e" gsl_sf_laguerre_3_e :: Double -> Double -> Ptr Double -> IO(Int) | 50 | foreign import ccall "laguerre.h gsl_sf_laguerre_3_e" gsl_sf_laguerre_3_e :: Double -> Double -> Ptr Double -> IO(Int) |
45 | 51 | ||
46 | -- | wrapper for double gsl_sf_laguerre_1(double a,double x); | 52 | -- | wrapper for double gsl_sf_laguerre_1(double a,double x); |
53 | -- | ||
54 | -- <http://www.google.com/search?q=gsl_sf_laguerre_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
47 | laguerre_1 :: Double -> Double -> Double | 55 | laguerre_1 :: Double -> Double -> Double |
48 | laguerre_1 = gsl_sf_laguerre_1 | 56 | laguerre_1 = gsl_sf_laguerre_1 |
49 | foreign import ccall "laguerre.h gsl_sf_laguerre_1" gsl_sf_laguerre_1 :: Double -> Double -> Double | 57 | foreign import ccall "laguerre.h gsl_sf_laguerre_1" gsl_sf_laguerre_1 :: Double -> Double -> Double |
50 | 58 | ||
51 | -- | wrapper for double gsl_sf_laguerre_2(double a,double x); | 59 | -- | wrapper for double gsl_sf_laguerre_2(double a,double x); |
60 | -- | ||
61 | -- <http://www.google.com/search?q=gsl_sf_laguerre_2&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
52 | laguerre_2 :: Double -> Double -> Double | 62 | laguerre_2 :: Double -> Double -> Double |
53 | laguerre_2 = gsl_sf_laguerre_2 | 63 | laguerre_2 = gsl_sf_laguerre_2 |
54 | foreign import ccall "laguerre.h gsl_sf_laguerre_2" gsl_sf_laguerre_2 :: Double -> Double -> Double | 64 | foreign import ccall "laguerre.h gsl_sf_laguerre_2" gsl_sf_laguerre_2 :: Double -> Double -> Double |
55 | 65 | ||
56 | -- | wrapper for double gsl_sf_laguerre_3(double a,double x); | 66 | -- | wrapper for double gsl_sf_laguerre_3(double a,double x); |
67 | -- | ||
68 | -- <http://www.google.com/search?q=gsl_sf_laguerre_3&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
57 | laguerre_3 :: Double -> Double -> Double | 69 | laguerre_3 :: Double -> Double -> Double |
58 | laguerre_3 = gsl_sf_laguerre_3 | 70 | laguerre_3 = gsl_sf_laguerre_3 |
59 | foreign import ccall "laguerre.h gsl_sf_laguerre_3" gsl_sf_laguerre_3 :: Double -> Double -> Double | 71 | foreign import ccall "laguerre.h gsl_sf_laguerre_3" gsl_sf_laguerre_3 :: Double -> Double -> Double |
60 | 72 | ||
61 | -- | wrapper for int gsl_sf_laguerre_n_e(int n,double a,double x,gsl_sf_result* result); | 73 | -- | wrapper for int gsl_sf_laguerre_n_e(int n,double a,double x,gsl_sf_result* result); |
74 | -- | ||
75 | -- <http://www.google.com/search?q=gsl_sf_laguerre_n_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
62 | laguerre_n_e :: Int -> Double -> Double -> (Double,Double) | 76 | laguerre_n_e :: Int -> Double -> Double -> (Double,Double) |
63 | laguerre_n_e n a x = createSFR "laguerre_n_e" $ gsl_sf_laguerre_n_e n a x | 77 | laguerre_n_e n a x = createSFR "laguerre_n_e" $ gsl_sf_laguerre_n_e n a x |
64 | foreign import ccall "laguerre.h gsl_sf_laguerre_n_e" gsl_sf_laguerre_n_e :: Int -> Double -> Double -> Ptr Double -> IO(Int) | 78 | foreign import ccall "laguerre.h gsl_sf_laguerre_n_e" gsl_sf_laguerre_n_e :: Int -> Double -> Double -> Ptr Double -> IO(Int) |
65 | 79 | ||
66 | -- | wrapper for double gsl_sf_laguerre_n(int n,double a,double x); | 80 | -- | wrapper for double gsl_sf_laguerre_n(int n,double a,double x); |
81 | -- | ||
82 | -- <http://www.google.com/search?q=gsl_sf_laguerre_n&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | ||
67 | laguerre_n :: Int -> Double -> Double -> Double | 83 | laguerre_n :: Int -> Double -> Double -> Double |
68 | laguerre_n = gsl_sf_laguerre_n | 84 | laguerre_n = gsl_sf_laguerre_n |
69 | foreign import ccall "laguerre.h gsl_sf_laguerre_n" gsl_sf_laguerre_n :: Int -> Double -> Double -> Double | 85 | foreign import ccall "laguerre.h gsl_sf_laguerre_n" gsl_sf_laguerre_n :: Int -> Double -> Double -> Double |