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