diff options
Diffstat (limited to 'lib/Numeric/GSL/Special/Zeta.hs')
-rw-r--r-- | lib/Numeric/GSL/Special/Zeta.hs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lib/Numeric/GSL/Special/Zeta.hs b/lib/Numeric/GSL/Special/Zeta.hs index 4970834..a78d0e8 100644 --- a/lib/Numeric/GSL/Special/Zeta.hs +++ b/lib/Numeric/GSL/Special/Zeta.hs | |||
@@ -40,95 +40,95 @@ import Numeric.GSL.Special.Internal | |||
40 | -- <http://www.google.com/search?q=gsl_sf_zeta_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 40 | -- <http://www.google.com/search?q=gsl_sf_zeta_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
41 | zeta_int_e :: CInt -> (Double,Double) | 41 | zeta_int_e :: CInt -> (Double,Double) |
42 | zeta_int_e n = createSFR "zeta_int_e" $ gsl_sf_zeta_int_e n | 42 | zeta_int_e n = createSFR "zeta_int_e" $ gsl_sf_zeta_int_e n |
43 | foreign import ccall "zeta.h gsl_sf_zeta_int_e" gsl_sf_zeta_int_e :: CInt -> Ptr () -> IO CInt | 43 | foreign import ccall "gsl_sf_zeta_int_e" gsl_sf_zeta_int_e :: CInt -> Ptr () -> IO CInt |
44 | 44 | ||
45 | -- | wrapper for double gsl_sf_zeta_int(int n); | 45 | -- | wrapper for double gsl_sf_zeta_int(int n); |
46 | -- | 46 | -- |
47 | -- <http://www.google.com/search?q=gsl_sf_zeta_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 47 | -- <http://www.google.com/search?q=gsl_sf_zeta_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
48 | zeta_int :: CInt -> Double | 48 | zeta_int :: CInt -> Double |
49 | zeta_int = gsl_sf_zeta_int | 49 | zeta_int = gsl_sf_zeta_int |
50 | foreign import ccall "zeta.h gsl_sf_zeta_int" gsl_sf_zeta_int :: CInt -> Double | 50 | foreign import ccall "gsl_sf_zeta_int" gsl_sf_zeta_int :: CInt -> Double |
51 | 51 | ||
52 | -- | wrapper for int gsl_sf_zeta_e(double s,gsl_sf_result* result); | 52 | -- | wrapper for int gsl_sf_zeta_e(double s,gsl_sf_result* result); |
53 | -- | 53 | -- |
54 | -- <http://www.google.com/search?q=gsl_sf_zeta_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 54 | -- <http://www.google.com/search?q=gsl_sf_zeta_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
55 | zeta_e :: Double -> (Double,Double) | 55 | zeta_e :: Double -> (Double,Double) |
56 | zeta_e s = createSFR "zeta_e" $ gsl_sf_zeta_e s | 56 | zeta_e s = createSFR "zeta_e" $ gsl_sf_zeta_e s |
57 | foreign import ccall "zeta.h gsl_sf_zeta_e" gsl_sf_zeta_e :: Double -> Ptr () -> IO CInt | 57 | foreign import ccall "gsl_sf_zeta_e" gsl_sf_zeta_e :: Double -> Ptr () -> IO CInt |
58 | 58 | ||
59 | -- | wrapper for double gsl_sf_zeta(double s); | 59 | -- | wrapper for double gsl_sf_zeta(double s); |
60 | -- | 60 | -- |
61 | -- <http://www.google.com/search?q=gsl_sf_zeta&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 61 | -- <http://www.google.com/search?q=gsl_sf_zeta&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
62 | zeta :: Double -> Double | 62 | zeta :: Double -> Double |
63 | zeta = gsl_sf_zeta | 63 | zeta = gsl_sf_zeta |
64 | foreign import ccall "zeta.h gsl_sf_zeta" gsl_sf_zeta :: Double -> Double | 64 | foreign import ccall "gsl_sf_zeta" gsl_sf_zeta :: Double -> Double |
65 | 65 | ||
66 | -- | wrapper for int gsl_sf_zetam1_e(double s,gsl_sf_result* result); | 66 | -- | wrapper for int gsl_sf_zetam1_e(double s,gsl_sf_result* result); |
67 | -- | 67 | -- |
68 | -- <http://www.google.com/search?q=gsl_sf_zetam1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 68 | -- <http://www.google.com/search?q=gsl_sf_zetam1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
69 | zetam1_e :: Double -> (Double,Double) | 69 | zetam1_e :: Double -> (Double,Double) |
70 | zetam1_e s = createSFR "zetam1_e" $ gsl_sf_zetam1_e s | 70 | zetam1_e s = createSFR "zetam1_e" $ gsl_sf_zetam1_e s |
71 | foreign import ccall "zeta.h gsl_sf_zetam1_e" gsl_sf_zetam1_e :: Double -> Ptr () -> IO CInt | 71 | foreign import ccall "gsl_sf_zetam1_e" gsl_sf_zetam1_e :: Double -> Ptr () -> IO CInt |
72 | 72 | ||
73 | -- | wrapper for double gsl_sf_zetam1(double s); | 73 | -- | wrapper for double gsl_sf_zetam1(double s); |
74 | -- | 74 | -- |
75 | -- <http://www.google.com/search?q=gsl_sf_zetam1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 75 | -- <http://www.google.com/search?q=gsl_sf_zetam1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
76 | zetam1 :: Double -> Double | 76 | zetam1 :: Double -> Double |
77 | zetam1 = gsl_sf_zetam1 | 77 | zetam1 = gsl_sf_zetam1 |
78 | foreign import ccall "zeta.h gsl_sf_zetam1" gsl_sf_zetam1 :: Double -> Double | 78 | foreign import ccall "gsl_sf_zetam1" gsl_sf_zetam1 :: Double -> Double |
79 | 79 | ||
80 | -- | wrapper for int gsl_sf_zetam1_int_e(int s,gsl_sf_result* result); | 80 | -- | wrapper for int gsl_sf_zetam1_int_e(int s,gsl_sf_result* result); |
81 | -- | 81 | -- |
82 | -- <http://www.google.com/search?q=gsl_sf_zetam1_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 82 | -- <http://www.google.com/search?q=gsl_sf_zetam1_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
83 | zetam1_int_e :: CInt -> (Double,Double) | 83 | zetam1_int_e :: CInt -> (Double,Double) |
84 | zetam1_int_e s = createSFR "zetam1_int_e" $ gsl_sf_zetam1_int_e s | 84 | zetam1_int_e s = createSFR "zetam1_int_e" $ gsl_sf_zetam1_int_e s |
85 | foreign import ccall "zeta.h gsl_sf_zetam1_int_e" gsl_sf_zetam1_int_e :: CInt -> Ptr () -> IO CInt | 85 | foreign import ccall "gsl_sf_zetam1_int_e" gsl_sf_zetam1_int_e :: CInt -> Ptr () -> IO CInt |
86 | 86 | ||
87 | -- | wrapper for double gsl_sf_zetam1_int(int s); | 87 | -- | wrapper for double gsl_sf_zetam1_int(int s); |
88 | -- | 88 | -- |
89 | -- <http://www.google.com/search?q=gsl_sf_zetam1_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 89 | -- <http://www.google.com/search?q=gsl_sf_zetam1_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
90 | zetam1_int :: CInt -> Double | 90 | zetam1_int :: CInt -> Double |
91 | zetam1_int = gsl_sf_zetam1_int | 91 | zetam1_int = gsl_sf_zetam1_int |
92 | foreign import ccall "zeta.h gsl_sf_zetam1_int" gsl_sf_zetam1_int :: CInt -> Double | 92 | foreign import ccall "gsl_sf_zetam1_int" gsl_sf_zetam1_int :: CInt -> Double |
93 | 93 | ||
94 | -- | wrapper for int gsl_sf_hzeta_e(double s,double q,gsl_sf_result* result); | 94 | -- | wrapper for int gsl_sf_hzeta_e(double s,double q,gsl_sf_result* result); |
95 | -- | 95 | -- |
96 | -- <http://www.google.com/search?q=gsl_sf_hzeta_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 96 | -- <http://www.google.com/search?q=gsl_sf_hzeta_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
97 | hzeta_e :: Double -> Double -> (Double,Double) | 97 | hzeta_e :: Double -> Double -> (Double,Double) |
98 | hzeta_e s q = createSFR "hzeta_e" $ gsl_sf_hzeta_e s q | 98 | hzeta_e s q = createSFR "hzeta_e" $ gsl_sf_hzeta_e s q |
99 | foreign import ccall "zeta.h gsl_sf_hzeta_e" gsl_sf_hzeta_e :: Double -> Double -> Ptr () -> IO CInt | 99 | foreign import ccall "gsl_sf_hzeta_e" gsl_sf_hzeta_e :: Double -> Double -> Ptr () -> IO CInt |
100 | 100 | ||
101 | -- | wrapper for double gsl_sf_hzeta(double s,double q); | 101 | -- | wrapper for double gsl_sf_hzeta(double s,double q); |
102 | -- | 102 | -- |
103 | -- <http://www.google.com/search?q=gsl_sf_hzeta&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 103 | -- <http://www.google.com/search?q=gsl_sf_hzeta&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
104 | hzeta :: Double -> Double -> Double | 104 | hzeta :: Double -> Double -> Double |
105 | hzeta = gsl_sf_hzeta | 105 | hzeta = gsl_sf_hzeta |
106 | foreign import ccall "zeta.h gsl_sf_hzeta" gsl_sf_hzeta :: Double -> Double -> Double | 106 | foreign import ccall "gsl_sf_hzeta" gsl_sf_hzeta :: Double -> Double -> Double |
107 | 107 | ||
108 | -- | wrapper for int gsl_sf_eta_int_e(int n,gsl_sf_result* result); | 108 | -- | wrapper for int gsl_sf_eta_int_e(int n,gsl_sf_result* result); |
109 | -- | 109 | -- |
110 | -- <http://www.google.com/search?q=gsl_sf_eta_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 110 | -- <http://www.google.com/search?q=gsl_sf_eta_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
111 | eta_int_e :: CInt -> (Double,Double) | 111 | eta_int_e :: CInt -> (Double,Double) |
112 | eta_int_e n = createSFR "eta_int_e" $ gsl_sf_eta_int_e n | 112 | eta_int_e n = createSFR "eta_int_e" $ gsl_sf_eta_int_e n |
113 | foreign import ccall "zeta.h gsl_sf_eta_int_e" gsl_sf_eta_int_e :: CInt -> Ptr () -> IO CInt | 113 | foreign import ccall "gsl_sf_eta_int_e" gsl_sf_eta_int_e :: CInt -> Ptr () -> IO CInt |
114 | 114 | ||
115 | -- | wrapper for double gsl_sf_eta_int(int n); | 115 | -- | wrapper for double gsl_sf_eta_int(int n); |
116 | -- | 116 | -- |
117 | -- <http://www.google.com/search?q=gsl_sf_eta_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 117 | -- <http://www.google.com/search?q=gsl_sf_eta_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
118 | eta_int :: CInt -> Double | 118 | eta_int :: CInt -> Double |
119 | eta_int = gsl_sf_eta_int | 119 | eta_int = gsl_sf_eta_int |
120 | foreign import ccall "zeta.h gsl_sf_eta_int" gsl_sf_eta_int :: CInt -> Double | 120 | foreign import ccall "gsl_sf_eta_int" gsl_sf_eta_int :: CInt -> Double |
121 | 121 | ||
122 | -- | wrapper for int gsl_sf_eta_e(double s,gsl_sf_result* result); | 122 | -- | wrapper for int gsl_sf_eta_e(double s,gsl_sf_result* result); |
123 | -- | 123 | -- |
124 | -- <http://www.google.com/search?q=gsl_sf_eta_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 124 | -- <http://www.google.com/search?q=gsl_sf_eta_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
125 | eta_e :: Double -> (Double,Double) | 125 | eta_e :: Double -> (Double,Double) |
126 | eta_e s = createSFR "eta_e" $ gsl_sf_eta_e s | 126 | eta_e s = createSFR "eta_e" $ gsl_sf_eta_e s |
127 | foreign import ccall "zeta.h gsl_sf_eta_e" gsl_sf_eta_e :: Double -> Ptr () -> IO CInt | 127 | foreign import ccall "gsl_sf_eta_e" gsl_sf_eta_e :: Double -> Ptr () -> IO CInt |
128 | 128 | ||
129 | -- | wrapper for double gsl_sf_eta(double s); | 129 | -- | wrapper for double gsl_sf_eta(double s); |
130 | -- | 130 | -- |
131 | -- <http://www.google.com/search?q=gsl_sf_eta&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 131 | -- <http://www.google.com/search?q=gsl_sf_eta&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
132 | eta :: Double -> Double | 132 | eta :: Double -> Double |
133 | eta = gsl_sf_eta | 133 | eta = gsl_sf_eta |
134 | foreign import ccall "zeta.h gsl_sf_eta" gsl_sf_eta :: Double -> Double | 134 | foreign import ccall "gsl_sf_eta" gsl_sf_eta :: Double -> Double |