diff options
Diffstat (limited to 'lib/Numeric/GSL/Special/Legendre.hs')
-rw-r--r-- | lib/Numeric/GSL/Special/Legendre.hs | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/lib/Numeric/GSL/Special/Legendre.hs b/lib/Numeric/GSL/Special/Legendre.hs index bd1c40d..97b9543 100644 --- a/lib/Numeric/GSL/Special/Legendre.hs +++ b/lib/Numeric/GSL/Special/Legendre.hs | |||
@@ -63,305 +63,305 @@ import Numeric.GSL.Special.Internal | |||
63 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 63 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
64 | legendre_Pl_e :: CInt -> Double -> (Double,Double) | 64 | legendre_Pl_e :: CInt -> Double -> (Double,Double) |
65 | legendre_Pl_e l x = createSFR "legendre_Pl_e" $ gsl_sf_legendre_Pl_e l x | 65 | legendre_Pl_e l x = createSFR "legendre_Pl_e" $ gsl_sf_legendre_Pl_e l x |
66 | foreign import ccall "legendre.h gsl_sf_legendre_Pl_e" gsl_sf_legendre_Pl_e :: CInt -> Double -> Ptr () -> IO CInt | 66 | foreign import ccall "gsl_sf_legendre_Pl_e" gsl_sf_legendre_Pl_e :: CInt -> Double -> Ptr () -> IO CInt |
67 | 67 | ||
68 | -- | wrapper for double gsl_sf_legendre_Pl(int l,double x); | 68 | -- | wrapper for double gsl_sf_legendre_Pl(int l,double x); |
69 | -- | 69 | -- |
70 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 70 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
71 | legendre_Pl :: CInt -> Double -> Double | 71 | legendre_Pl :: CInt -> Double -> Double |
72 | legendre_Pl = gsl_sf_legendre_Pl | 72 | legendre_Pl = gsl_sf_legendre_Pl |
73 | foreign import ccall "legendre.h gsl_sf_legendre_Pl" gsl_sf_legendre_Pl :: CInt -> Double -> Double | 73 | foreign import ccall "gsl_sf_legendre_Pl" gsl_sf_legendre_Pl :: CInt -> Double -> Double |
74 | 74 | ||
75 | -- | wrapper for int gsl_sf_legendre_Pl_array(int lmax,double x,double* result_array); | 75 | -- | wrapper for int gsl_sf_legendre_Pl_array(int lmax,double x,double* result_array); |
76 | -- | 76 | -- |
77 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 77 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
78 | legendre_Pl_array :: CInt -> Double -> Ptr Double -> CInt | 78 | legendre_Pl_array :: CInt -> Double -> Ptr Double -> CInt |
79 | legendre_Pl_array = gsl_sf_legendre_Pl_array | 79 | legendre_Pl_array = gsl_sf_legendre_Pl_array |
80 | foreign import ccall "legendre.h gsl_sf_legendre_Pl_array" gsl_sf_legendre_Pl_array :: CInt -> Double -> Ptr Double -> CInt | 80 | foreign import ccall "gsl_sf_legendre_Pl_array" gsl_sf_legendre_Pl_array :: CInt -> Double -> Ptr Double -> CInt |
81 | 81 | ||
82 | -- | wrapper for int gsl_sf_legendre_Pl_deriv_array(int lmax,double x,double* result_array,double* result_deriv_array); | 82 | -- | wrapper for int gsl_sf_legendre_Pl_deriv_array(int lmax,double x,double* result_array,double* result_deriv_array); |
83 | -- | 83 | -- |
84 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl_deriv_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 84 | -- <http://www.google.com/search?q=gsl_sf_legendre_Pl_deriv_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
85 | legendre_Pl_deriv_array :: CInt -> Double -> Ptr Double -> Ptr Double -> CInt | 85 | legendre_Pl_deriv_array :: CInt -> Double -> Ptr Double -> Ptr Double -> CInt |
86 | legendre_Pl_deriv_array = gsl_sf_legendre_Pl_deriv_array | 86 | legendre_Pl_deriv_array = gsl_sf_legendre_Pl_deriv_array |
87 | foreign import ccall "legendre.h gsl_sf_legendre_Pl_deriv_array" gsl_sf_legendre_Pl_deriv_array :: CInt -> Double -> Ptr Double -> Ptr Double -> CInt | 87 | foreign import ccall "gsl_sf_legendre_Pl_deriv_array" gsl_sf_legendre_Pl_deriv_array :: CInt -> Double -> Ptr Double -> Ptr Double -> CInt |
88 | 88 | ||
89 | -- | wrapper for int gsl_sf_legendre_P1_e(double x,gsl_sf_result* result); | 89 | -- | wrapper for int gsl_sf_legendre_P1_e(double x,gsl_sf_result* result); |
90 | -- | 90 | -- |
91 | -- <http://www.google.com/search?q=gsl_sf_legendre_P1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 91 | -- <http://www.google.com/search?q=gsl_sf_legendre_P1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
92 | legendre_P1_e :: Double -> (Double,Double) | 92 | legendre_P1_e :: Double -> (Double,Double) |
93 | legendre_P1_e x = createSFR "legendre_P1_e" $ gsl_sf_legendre_P1_e x | 93 | legendre_P1_e x = createSFR "legendre_P1_e" $ gsl_sf_legendre_P1_e x |
94 | foreign import ccall "legendre.h gsl_sf_legendre_P1_e" gsl_sf_legendre_P1_e :: Double -> Ptr () -> IO CInt | 94 | foreign import ccall "gsl_sf_legendre_P1_e" gsl_sf_legendre_P1_e :: Double -> Ptr () -> IO CInt |
95 | 95 | ||
96 | -- | wrapper for int gsl_sf_legendre_P2_e(double x,gsl_sf_result* result); | 96 | -- | wrapper for int gsl_sf_legendre_P2_e(double x,gsl_sf_result* result); |
97 | -- | 97 | -- |
98 | -- <http://www.google.com/search?q=gsl_sf_legendre_P2_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 98 | -- <http://www.google.com/search?q=gsl_sf_legendre_P2_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
99 | legendre_P2_e :: Double -> (Double,Double) | 99 | legendre_P2_e :: Double -> (Double,Double) |
100 | legendre_P2_e x = createSFR "legendre_P2_e" $ gsl_sf_legendre_P2_e x | 100 | legendre_P2_e x = createSFR "legendre_P2_e" $ gsl_sf_legendre_P2_e x |
101 | foreign import ccall "legendre.h gsl_sf_legendre_P2_e" gsl_sf_legendre_P2_e :: Double -> Ptr () -> IO CInt | 101 | foreign import ccall "gsl_sf_legendre_P2_e" gsl_sf_legendre_P2_e :: Double -> Ptr () -> IO CInt |
102 | 102 | ||
103 | -- | wrapper for int gsl_sf_legendre_P3_e(double x,gsl_sf_result* result); | 103 | -- | wrapper for int gsl_sf_legendre_P3_e(double x,gsl_sf_result* result); |
104 | -- | 104 | -- |
105 | -- <http://www.google.com/search?q=gsl_sf_legendre_P3_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 105 | -- <http://www.google.com/search?q=gsl_sf_legendre_P3_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
106 | legendre_P3_e :: Double -> (Double,Double) | 106 | legendre_P3_e :: Double -> (Double,Double) |
107 | legendre_P3_e x = createSFR "legendre_P3_e" $ gsl_sf_legendre_P3_e x | 107 | legendre_P3_e x = createSFR "legendre_P3_e" $ gsl_sf_legendre_P3_e x |
108 | foreign import ccall "legendre.h gsl_sf_legendre_P3_e" gsl_sf_legendre_P3_e :: Double -> Ptr () -> IO CInt | 108 | foreign import ccall "gsl_sf_legendre_P3_e" gsl_sf_legendre_P3_e :: Double -> Ptr () -> IO CInt |
109 | 109 | ||
110 | -- | wrapper for double gsl_sf_legendre_P1(double x); | 110 | -- | wrapper for double gsl_sf_legendre_P1(double x); |
111 | -- | 111 | -- |
112 | -- <http://www.google.com/search?q=gsl_sf_legendre_P1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 112 | -- <http://www.google.com/search?q=gsl_sf_legendre_P1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
113 | legendre_P1 :: Double -> Double | 113 | legendre_P1 :: Double -> Double |
114 | legendre_P1 = gsl_sf_legendre_P1 | 114 | legendre_P1 = gsl_sf_legendre_P1 |
115 | foreign import ccall "legendre.h gsl_sf_legendre_P1" gsl_sf_legendre_P1 :: Double -> Double | 115 | foreign import ccall "gsl_sf_legendre_P1" gsl_sf_legendre_P1 :: Double -> Double |
116 | 116 | ||
117 | -- | wrapper for double gsl_sf_legendre_P2(double x); | 117 | -- | wrapper for double gsl_sf_legendre_P2(double x); |
118 | -- | 118 | -- |
119 | -- <http://www.google.com/search?q=gsl_sf_legendre_P2&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 119 | -- <http://www.google.com/search?q=gsl_sf_legendre_P2&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
120 | legendre_P2 :: Double -> Double | 120 | legendre_P2 :: Double -> Double |
121 | legendre_P2 = gsl_sf_legendre_P2 | 121 | legendre_P2 = gsl_sf_legendre_P2 |
122 | foreign import ccall "legendre.h gsl_sf_legendre_P2" gsl_sf_legendre_P2 :: Double -> Double | 122 | foreign import ccall "gsl_sf_legendre_P2" gsl_sf_legendre_P2 :: Double -> Double |
123 | 123 | ||
124 | -- | wrapper for double gsl_sf_legendre_P3(double x); | 124 | -- | wrapper for double gsl_sf_legendre_P3(double x); |
125 | -- | 125 | -- |
126 | -- <http://www.google.com/search?q=gsl_sf_legendre_P3&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 126 | -- <http://www.google.com/search?q=gsl_sf_legendre_P3&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
127 | legendre_P3 :: Double -> Double | 127 | legendre_P3 :: Double -> Double |
128 | legendre_P3 = gsl_sf_legendre_P3 | 128 | legendre_P3 = gsl_sf_legendre_P3 |
129 | foreign import ccall "legendre.h gsl_sf_legendre_P3" gsl_sf_legendre_P3 :: Double -> Double | 129 | foreign import ccall "gsl_sf_legendre_P3" gsl_sf_legendre_P3 :: Double -> Double |
130 | 130 | ||
131 | -- | wrapper for int gsl_sf_legendre_Q0_e(double x,gsl_sf_result* result); | 131 | -- | wrapper for int gsl_sf_legendre_Q0_e(double x,gsl_sf_result* result); |
132 | -- | 132 | -- |
133 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q0_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 133 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q0_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
134 | legendre_Q0_e :: Double -> (Double,Double) | 134 | legendre_Q0_e :: Double -> (Double,Double) |
135 | legendre_Q0_e x = createSFR "legendre_Q0_e" $ gsl_sf_legendre_Q0_e x | 135 | legendre_Q0_e x = createSFR "legendre_Q0_e" $ gsl_sf_legendre_Q0_e x |
136 | foreign import ccall "legendre.h gsl_sf_legendre_Q0_e" gsl_sf_legendre_Q0_e :: Double -> Ptr () -> IO CInt | 136 | foreign import ccall "gsl_sf_legendre_Q0_e" gsl_sf_legendre_Q0_e :: Double -> Ptr () -> IO CInt |
137 | 137 | ||
138 | -- | wrapper for double gsl_sf_legendre_Q0(double x); | 138 | -- | wrapper for double gsl_sf_legendre_Q0(double x); |
139 | -- | 139 | -- |
140 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q0&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 140 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q0&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
141 | legendre_Q0 :: Double -> Double | 141 | legendre_Q0 :: Double -> Double |
142 | legendre_Q0 = gsl_sf_legendre_Q0 | 142 | legendre_Q0 = gsl_sf_legendre_Q0 |
143 | foreign import ccall "legendre.h gsl_sf_legendre_Q0" gsl_sf_legendre_Q0 :: Double -> Double | 143 | foreign import ccall "gsl_sf_legendre_Q0" gsl_sf_legendre_Q0 :: Double -> Double |
144 | 144 | ||
145 | -- | wrapper for int gsl_sf_legendre_Q1_e(double x,gsl_sf_result* result); | 145 | -- | wrapper for int gsl_sf_legendre_Q1_e(double x,gsl_sf_result* result); |
146 | -- | 146 | -- |
147 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 147 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
148 | legendre_Q1_e :: Double -> (Double,Double) | 148 | legendre_Q1_e :: Double -> (Double,Double) |
149 | legendre_Q1_e x = createSFR "legendre_Q1_e" $ gsl_sf_legendre_Q1_e x | 149 | legendre_Q1_e x = createSFR "legendre_Q1_e" $ gsl_sf_legendre_Q1_e x |
150 | foreign import ccall "legendre.h gsl_sf_legendre_Q1_e" gsl_sf_legendre_Q1_e :: Double -> Ptr () -> IO CInt | 150 | foreign import ccall "gsl_sf_legendre_Q1_e" gsl_sf_legendre_Q1_e :: Double -> Ptr () -> IO CInt |
151 | 151 | ||
152 | -- | wrapper for double gsl_sf_legendre_Q1(double x); | 152 | -- | wrapper for double gsl_sf_legendre_Q1(double x); |
153 | -- | 153 | -- |
154 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 154 | -- <http://www.google.com/search?q=gsl_sf_legendre_Q1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
155 | legendre_Q1 :: Double -> Double | 155 | legendre_Q1 :: Double -> Double |
156 | legendre_Q1 = gsl_sf_legendre_Q1 | 156 | legendre_Q1 = gsl_sf_legendre_Q1 |
157 | foreign import ccall "legendre.h gsl_sf_legendre_Q1" gsl_sf_legendre_Q1 :: Double -> Double | 157 | foreign import ccall "gsl_sf_legendre_Q1" gsl_sf_legendre_Q1 :: Double -> Double |
158 | 158 | ||
159 | -- | wrapper for int gsl_sf_legendre_Ql_e(int l,double x,gsl_sf_result* result); | 159 | -- | wrapper for int gsl_sf_legendre_Ql_e(int l,double x,gsl_sf_result* result); |
160 | -- | 160 | -- |
161 | -- <http://www.google.com/search?q=gsl_sf_legendre_Ql_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 161 | -- <http://www.google.com/search?q=gsl_sf_legendre_Ql_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
162 | legendre_Ql_e :: CInt -> Double -> (Double,Double) | 162 | legendre_Ql_e :: CInt -> Double -> (Double,Double) |
163 | legendre_Ql_e l x = createSFR "legendre_Ql_e" $ gsl_sf_legendre_Ql_e l x | 163 | legendre_Ql_e l x = createSFR "legendre_Ql_e" $ gsl_sf_legendre_Ql_e l x |
164 | foreign import ccall "legendre.h gsl_sf_legendre_Ql_e" gsl_sf_legendre_Ql_e :: CInt -> Double -> Ptr () -> IO CInt | 164 | foreign import ccall "gsl_sf_legendre_Ql_e" gsl_sf_legendre_Ql_e :: CInt -> Double -> Ptr () -> IO CInt |
165 | 165 | ||
166 | -- | wrapper for double gsl_sf_legendre_Ql(int l,double x); | 166 | -- | wrapper for double gsl_sf_legendre_Ql(int l,double x); |
167 | -- | 167 | -- |
168 | -- <http://www.google.com/search?q=gsl_sf_legendre_Ql&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 168 | -- <http://www.google.com/search?q=gsl_sf_legendre_Ql&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
169 | legendre_Ql :: CInt -> Double -> Double | 169 | legendre_Ql :: CInt -> Double -> Double |
170 | legendre_Ql = gsl_sf_legendre_Ql | 170 | legendre_Ql = gsl_sf_legendre_Ql |
171 | foreign import ccall "legendre.h gsl_sf_legendre_Ql" gsl_sf_legendre_Ql :: CInt -> Double -> Double | 171 | foreign import ccall "gsl_sf_legendre_Ql" gsl_sf_legendre_Ql :: CInt -> Double -> Double |
172 | 172 | ||
173 | -- | wrapper for int gsl_sf_legendre_Plm_e(int l,int m,double x,gsl_sf_result* result); | 173 | -- | wrapper for int gsl_sf_legendre_Plm_e(int l,int m,double x,gsl_sf_result* result); |
174 | -- | 174 | -- |
175 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 175 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
176 | legendre_Plm_e :: CInt -> CInt -> Double -> (Double,Double) | 176 | legendre_Plm_e :: CInt -> CInt -> Double -> (Double,Double) |
177 | legendre_Plm_e l m x = createSFR "legendre_Plm_e" $ gsl_sf_legendre_Plm_e l m x | 177 | legendre_Plm_e l m x = createSFR "legendre_Plm_e" $ gsl_sf_legendre_Plm_e l m x |
178 | foreign import ccall "legendre.h gsl_sf_legendre_Plm_e" gsl_sf_legendre_Plm_e :: CInt -> CInt -> Double -> Ptr () -> IO CInt | 178 | foreign import ccall "gsl_sf_legendre_Plm_e" gsl_sf_legendre_Plm_e :: CInt -> CInt -> Double -> Ptr () -> IO CInt |
179 | 179 | ||
180 | -- | wrapper for double gsl_sf_legendre_Plm(int l,int m,double x); | 180 | -- | wrapper for double gsl_sf_legendre_Plm(int l,int m,double x); |
181 | -- | 181 | -- |
182 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 182 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
183 | legendre_Plm :: CInt -> CInt -> Double -> Double | 183 | legendre_Plm :: CInt -> CInt -> Double -> Double |
184 | legendre_Plm = gsl_sf_legendre_Plm | 184 | legendre_Plm = gsl_sf_legendre_Plm |
185 | foreign import ccall "legendre.h gsl_sf_legendre_Plm" gsl_sf_legendre_Plm :: CInt -> CInt -> Double -> Double | 185 | foreign import ccall "gsl_sf_legendre_Plm" gsl_sf_legendre_Plm :: CInt -> CInt -> Double -> Double |
186 | 186 | ||
187 | -- | wrapper for int gsl_sf_legendre_Plm_array(int lmax,int m,double x,double* result_array); | 187 | -- | wrapper for int gsl_sf_legendre_Plm_array(int lmax,int m,double x,double* result_array); |
188 | -- | 188 | -- |
189 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 189 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
190 | legendre_Plm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt | 190 | legendre_Plm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt |
191 | legendre_Plm_array = gsl_sf_legendre_Plm_array | 191 | legendre_Plm_array = gsl_sf_legendre_Plm_array |
192 | foreign import ccall "legendre.h gsl_sf_legendre_Plm_array" gsl_sf_legendre_Plm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt | 192 | foreign import ccall "gsl_sf_legendre_Plm_array" gsl_sf_legendre_Plm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt |
193 | 193 | ||
194 | -- | wrapper for int gsl_sf_legendre_Plm_deriv_array(int lmax,int m,double x,double* result_array,double* result_deriv_array); | 194 | -- | wrapper for int gsl_sf_legendre_Plm_deriv_array(int lmax,int m,double x,double* result_array,double* result_deriv_array); |
195 | -- | 195 | -- |
196 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm_deriv_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 196 | -- <http://www.google.com/search?q=gsl_sf_legendre_Plm_deriv_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
197 | legendre_Plm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt | 197 | legendre_Plm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt |
198 | legendre_Plm_deriv_array = gsl_sf_legendre_Plm_deriv_array | 198 | legendre_Plm_deriv_array = gsl_sf_legendre_Plm_deriv_array |
199 | foreign import ccall "legendre.h gsl_sf_legendre_Plm_deriv_array" gsl_sf_legendre_Plm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt | 199 | foreign import ccall "gsl_sf_legendre_Plm_deriv_array" gsl_sf_legendre_Plm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt |
200 | 200 | ||
201 | -- | wrapper for int gsl_sf_legendre_sphPlm_e(int l,int m,double x,gsl_sf_result* result); | 201 | -- | wrapper for int gsl_sf_legendre_sphPlm_e(int l,int m,double x,gsl_sf_result* result); |
202 | -- | 202 | -- |
203 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 203 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
204 | legendre_sphPlm_e :: CInt -> CInt -> Double -> (Double,Double) | 204 | legendre_sphPlm_e :: CInt -> CInt -> Double -> (Double,Double) |
205 | legendre_sphPlm_e l m x = createSFR "legendre_sphPlm_e" $ gsl_sf_legendre_sphPlm_e l m x | 205 | legendre_sphPlm_e l m x = createSFR "legendre_sphPlm_e" $ gsl_sf_legendre_sphPlm_e l m x |
206 | foreign import ccall "legendre.h gsl_sf_legendre_sphPlm_e" gsl_sf_legendre_sphPlm_e :: CInt -> CInt -> Double -> Ptr () -> IO CInt | 206 | foreign import ccall "gsl_sf_legendre_sphPlm_e" gsl_sf_legendre_sphPlm_e :: CInt -> CInt -> Double -> Ptr () -> IO CInt |
207 | 207 | ||
208 | -- | wrapper for double gsl_sf_legendre_sphPlm(int l,int m,double x); | 208 | -- | wrapper for double gsl_sf_legendre_sphPlm(int l,int m,double x); |
209 | -- | 209 | -- |
210 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 210 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
211 | legendre_sphPlm :: CInt -> CInt -> Double -> Double | 211 | legendre_sphPlm :: CInt -> CInt -> Double -> Double |
212 | legendre_sphPlm = gsl_sf_legendre_sphPlm | 212 | legendre_sphPlm = gsl_sf_legendre_sphPlm |
213 | foreign import ccall "legendre.h gsl_sf_legendre_sphPlm" gsl_sf_legendre_sphPlm :: CInt -> CInt -> Double -> Double | 213 | foreign import ccall "gsl_sf_legendre_sphPlm" gsl_sf_legendre_sphPlm :: CInt -> CInt -> Double -> Double |
214 | 214 | ||
215 | -- | wrapper for int gsl_sf_legendre_sphPlm_array(int lmax,int m,double x,double* result_array); | 215 | -- | wrapper for int gsl_sf_legendre_sphPlm_array(int lmax,int m,double x,double* result_array); |
216 | -- | 216 | -- |
217 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 217 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
218 | legendre_sphPlm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt | 218 | legendre_sphPlm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt |
219 | legendre_sphPlm_array = gsl_sf_legendre_sphPlm_array | 219 | legendre_sphPlm_array = gsl_sf_legendre_sphPlm_array |
220 | foreign import ccall "legendre.h gsl_sf_legendre_sphPlm_array" gsl_sf_legendre_sphPlm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt | 220 | foreign import ccall "gsl_sf_legendre_sphPlm_array" gsl_sf_legendre_sphPlm_array :: CInt -> CInt -> Double -> Ptr Double -> CInt |
221 | 221 | ||
222 | -- | wrapper for int gsl_sf_legendre_sphPlm_deriv_array(int lmax,int m,double x,double* result_array,double* result_deriv_array); | 222 | -- | wrapper for int gsl_sf_legendre_sphPlm_deriv_array(int lmax,int m,double x,double* result_array,double* result_deriv_array); |
223 | -- | 223 | -- |
224 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm_deriv_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 224 | -- <http://www.google.com/search?q=gsl_sf_legendre_sphPlm_deriv_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
225 | legendre_sphPlm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt | 225 | legendre_sphPlm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt |
226 | legendre_sphPlm_deriv_array = gsl_sf_legendre_sphPlm_deriv_array | 226 | legendre_sphPlm_deriv_array = gsl_sf_legendre_sphPlm_deriv_array |
227 | foreign import ccall "legendre.h gsl_sf_legendre_sphPlm_deriv_array" gsl_sf_legendre_sphPlm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt | 227 | foreign import ccall "gsl_sf_legendre_sphPlm_deriv_array" gsl_sf_legendre_sphPlm_deriv_array :: CInt -> CInt -> Double -> Ptr Double -> Ptr Double -> CInt |
228 | 228 | ||
229 | -- | wrapper for int gsl_sf_legendre_array_size(int lmax,int m); | 229 | -- | wrapper for int gsl_sf_legendre_array_size(int lmax,int m); |
230 | -- | 230 | -- |
231 | -- <http://www.google.com/search?q=gsl_sf_legendre_array_size&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 231 | -- <http://www.google.com/search?q=gsl_sf_legendre_array_size&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
232 | legendre_array_size :: CInt -> CInt -> CInt | 232 | legendre_array_size :: CInt -> CInt -> CInt |
233 | legendre_array_size = gsl_sf_legendre_array_size | 233 | legendre_array_size = gsl_sf_legendre_array_size |
234 | foreign import ccall "legendre.h gsl_sf_legendre_array_size" gsl_sf_legendre_array_size :: CInt -> CInt -> CInt | 234 | foreign import ccall "gsl_sf_legendre_array_size" gsl_sf_legendre_array_size :: CInt -> CInt -> CInt |
235 | 235 | ||
236 | -- | wrapper for int gsl_sf_conicalP_half_e(double lambda,double x,gsl_sf_result* result); | 236 | -- | wrapper for int gsl_sf_conicalP_half_e(double lambda,double x,gsl_sf_result* result); |
237 | -- | 237 | -- |
238 | -- <http://www.google.com/search?q=gsl_sf_conicalP_half_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 238 | -- <http://www.google.com/search?q=gsl_sf_conicalP_half_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
239 | conicalP_half_e :: Double -> Double -> (Double,Double) | 239 | conicalP_half_e :: Double -> Double -> (Double,Double) |
240 | conicalP_half_e lambda x = createSFR "conicalP_half_e" $ gsl_sf_conicalP_half_e lambda x | 240 | conicalP_half_e lambda x = createSFR "conicalP_half_e" $ gsl_sf_conicalP_half_e lambda x |
241 | foreign import ccall "legendre.h gsl_sf_conicalP_half_e" gsl_sf_conicalP_half_e :: Double -> Double -> Ptr () -> IO CInt | 241 | foreign import ccall "gsl_sf_conicalP_half_e" gsl_sf_conicalP_half_e :: Double -> Double -> Ptr () -> IO CInt |
242 | 242 | ||
243 | -- | wrapper for double gsl_sf_conicalP_half(double lambda,double x); | 243 | -- | wrapper for double gsl_sf_conicalP_half(double lambda,double x); |
244 | -- | 244 | -- |
245 | -- <http://www.google.com/search?q=gsl_sf_conicalP_half&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 245 | -- <http://www.google.com/search?q=gsl_sf_conicalP_half&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
246 | conicalP_half :: Double -> Double -> Double | 246 | conicalP_half :: Double -> Double -> Double |
247 | conicalP_half = gsl_sf_conicalP_half | 247 | conicalP_half = gsl_sf_conicalP_half |
248 | foreign import ccall "legendre.h gsl_sf_conicalP_half" gsl_sf_conicalP_half :: Double -> Double -> Double | 248 | foreign import ccall "gsl_sf_conicalP_half" gsl_sf_conicalP_half :: Double -> Double -> Double |
249 | 249 | ||
250 | -- | wrapper for int gsl_sf_conicalP_mhalf_e(double lambda,double x,gsl_sf_result* result); | 250 | -- | wrapper for int gsl_sf_conicalP_mhalf_e(double lambda,double x,gsl_sf_result* result); |
251 | -- | 251 | -- |
252 | -- <http://www.google.com/search?q=gsl_sf_conicalP_mhalf_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 252 | -- <http://www.google.com/search?q=gsl_sf_conicalP_mhalf_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
253 | conicalP_mhalf_e :: Double -> Double -> (Double,Double) | 253 | conicalP_mhalf_e :: Double -> Double -> (Double,Double) |
254 | conicalP_mhalf_e lambda x = createSFR "conicalP_mhalf_e" $ gsl_sf_conicalP_mhalf_e lambda x | 254 | conicalP_mhalf_e lambda x = createSFR "conicalP_mhalf_e" $ gsl_sf_conicalP_mhalf_e lambda x |
255 | foreign import ccall "legendre.h gsl_sf_conicalP_mhalf_e" gsl_sf_conicalP_mhalf_e :: Double -> Double -> Ptr () -> IO CInt | 255 | foreign import ccall "gsl_sf_conicalP_mhalf_e" gsl_sf_conicalP_mhalf_e :: Double -> Double -> Ptr () -> IO CInt |
256 | 256 | ||
257 | -- | wrapper for double gsl_sf_conicalP_mhalf(double lambda,double x); | 257 | -- | wrapper for double gsl_sf_conicalP_mhalf(double lambda,double x); |
258 | -- | 258 | -- |
259 | -- <http://www.google.com/search?q=gsl_sf_conicalP_mhalf&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 259 | -- <http://www.google.com/search?q=gsl_sf_conicalP_mhalf&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
260 | conicalP_mhalf :: Double -> Double -> Double | 260 | conicalP_mhalf :: Double -> Double -> Double |
261 | conicalP_mhalf = gsl_sf_conicalP_mhalf | 261 | conicalP_mhalf = gsl_sf_conicalP_mhalf |
262 | foreign import ccall "legendre.h gsl_sf_conicalP_mhalf" gsl_sf_conicalP_mhalf :: Double -> Double -> Double | 262 | foreign import ccall "gsl_sf_conicalP_mhalf" gsl_sf_conicalP_mhalf :: Double -> Double -> Double |
263 | 263 | ||
264 | -- | wrapper for int gsl_sf_conicalP_0_e(double lambda,double x,gsl_sf_result* result); | 264 | -- | wrapper for int gsl_sf_conicalP_0_e(double lambda,double x,gsl_sf_result* result); |
265 | -- | 265 | -- |
266 | -- <http://www.google.com/search?q=gsl_sf_conicalP_0_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 266 | -- <http://www.google.com/search?q=gsl_sf_conicalP_0_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
267 | conicalP_0_e :: Double -> Double -> (Double,Double) | 267 | conicalP_0_e :: Double -> Double -> (Double,Double) |
268 | conicalP_0_e lambda x = createSFR "conicalP_0_e" $ gsl_sf_conicalP_0_e lambda x | 268 | conicalP_0_e lambda x = createSFR "conicalP_0_e" $ gsl_sf_conicalP_0_e lambda x |
269 | foreign import ccall "legendre.h gsl_sf_conicalP_0_e" gsl_sf_conicalP_0_e :: Double -> Double -> Ptr () -> IO CInt | 269 | foreign import ccall "gsl_sf_conicalP_0_e" gsl_sf_conicalP_0_e :: Double -> Double -> Ptr () -> IO CInt |
270 | 270 | ||
271 | -- | wrapper for double gsl_sf_conicalP_0(double lambda,double x); | 271 | -- | wrapper for double gsl_sf_conicalP_0(double lambda,double x); |
272 | -- | 272 | -- |
273 | -- <http://www.google.com/search?q=gsl_sf_conicalP_0&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 273 | -- <http://www.google.com/search?q=gsl_sf_conicalP_0&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
274 | conicalP_0 :: Double -> Double -> Double | 274 | conicalP_0 :: Double -> Double -> Double |
275 | conicalP_0 = gsl_sf_conicalP_0 | 275 | conicalP_0 = gsl_sf_conicalP_0 |
276 | foreign import ccall "legendre.h gsl_sf_conicalP_0" gsl_sf_conicalP_0 :: Double -> Double -> Double | 276 | foreign import ccall "gsl_sf_conicalP_0" gsl_sf_conicalP_0 :: Double -> Double -> Double |
277 | 277 | ||
278 | -- | wrapper for int gsl_sf_conicalP_1_e(double lambda,double x,gsl_sf_result* result); | 278 | -- | wrapper for int gsl_sf_conicalP_1_e(double lambda,double x,gsl_sf_result* result); |
279 | -- | 279 | -- |
280 | -- <http://www.google.com/search?q=gsl_sf_conicalP_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 280 | -- <http://www.google.com/search?q=gsl_sf_conicalP_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
281 | conicalP_1_e :: Double -> Double -> (Double,Double) | 281 | conicalP_1_e :: Double -> Double -> (Double,Double) |
282 | conicalP_1_e lambda x = createSFR "conicalP_1_e" $ gsl_sf_conicalP_1_e lambda x | 282 | conicalP_1_e lambda x = createSFR "conicalP_1_e" $ gsl_sf_conicalP_1_e lambda x |
283 | foreign import ccall "legendre.h gsl_sf_conicalP_1_e" gsl_sf_conicalP_1_e :: Double -> Double -> Ptr () -> IO CInt | 283 | foreign import ccall "gsl_sf_conicalP_1_e" gsl_sf_conicalP_1_e :: Double -> Double -> Ptr () -> IO CInt |
284 | 284 | ||
285 | -- | wrapper for double gsl_sf_conicalP_1(double lambda,double x); | 285 | -- | wrapper for double gsl_sf_conicalP_1(double lambda,double x); |
286 | -- | 286 | -- |
287 | -- <http://www.google.com/search?q=gsl_sf_conicalP_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 287 | -- <http://www.google.com/search?q=gsl_sf_conicalP_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
288 | conicalP_1 :: Double -> Double -> Double | 288 | conicalP_1 :: Double -> Double -> Double |
289 | conicalP_1 = gsl_sf_conicalP_1 | 289 | conicalP_1 = gsl_sf_conicalP_1 |
290 | foreign import ccall "legendre.h gsl_sf_conicalP_1" gsl_sf_conicalP_1 :: Double -> Double -> Double | 290 | foreign import ccall "gsl_sf_conicalP_1" gsl_sf_conicalP_1 :: Double -> Double -> Double |
291 | 291 | ||
292 | -- | wrapper for int gsl_sf_conicalP_sph_reg_e(int l,double lambda,double x,gsl_sf_result* result); | 292 | -- | wrapper for int gsl_sf_conicalP_sph_reg_e(int l,double lambda,double x,gsl_sf_result* result); |
293 | -- | 293 | -- |
294 | -- <http://www.google.com/search?q=gsl_sf_conicalP_sph_reg_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 294 | -- <http://www.google.com/search?q=gsl_sf_conicalP_sph_reg_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
295 | conicalP_sph_reg_e :: CInt -> Double -> Double -> (Double,Double) | 295 | conicalP_sph_reg_e :: CInt -> Double -> Double -> (Double,Double) |
296 | conicalP_sph_reg_e l lambda x = createSFR "conicalP_sph_reg_e" $ gsl_sf_conicalP_sph_reg_e l lambda x | 296 | conicalP_sph_reg_e l lambda x = createSFR "conicalP_sph_reg_e" $ gsl_sf_conicalP_sph_reg_e l lambda x |
297 | foreign import ccall "legendre.h gsl_sf_conicalP_sph_reg_e" gsl_sf_conicalP_sph_reg_e :: CInt -> Double -> Double -> Ptr () -> IO CInt | 297 | foreign import ccall "gsl_sf_conicalP_sph_reg_e" gsl_sf_conicalP_sph_reg_e :: CInt -> Double -> Double -> Ptr () -> IO CInt |
298 | 298 | ||
299 | -- | wrapper for double gsl_sf_conicalP_sph_reg(int l,double lambda,double x); | 299 | -- | wrapper for double gsl_sf_conicalP_sph_reg(int l,double lambda,double x); |
300 | -- | 300 | -- |
301 | -- <http://www.google.com/search?q=gsl_sf_conicalP_sph_reg&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 301 | -- <http://www.google.com/search?q=gsl_sf_conicalP_sph_reg&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
302 | conicalP_sph_reg :: CInt -> Double -> Double -> Double | 302 | conicalP_sph_reg :: CInt -> Double -> Double -> Double |
303 | conicalP_sph_reg = gsl_sf_conicalP_sph_reg | 303 | conicalP_sph_reg = gsl_sf_conicalP_sph_reg |
304 | foreign import ccall "legendre.h gsl_sf_conicalP_sph_reg" gsl_sf_conicalP_sph_reg :: CInt -> Double -> Double -> Double | 304 | foreign import ccall "gsl_sf_conicalP_sph_reg" gsl_sf_conicalP_sph_reg :: CInt -> Double -> Double -> Double |
305 | 305 | ||
306 | -- | wrapper for int gsl_sf_conicalP_cyl_reg_e(int m,double lambda,double x,gsl_sf_result* result); | 306 | -- | wrapper for int gsl_sf_conicalP_cyl_reg_e(int m,double lambda,double x,gsl_sf_result* result); |
307 | -- | 307 | -- |
308 | -- <http://www.google.com/search?q=gsl_sf_conicalP_cyl_reg_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 308 | -- <http://www.google.com/search?q=gsl_sf_conicalP_cyl_reg_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
309 | conicalP_cyl_reg_e :: CInt -> Double -> Double -> (Double,Double) | 309 | conicalP_cyl_reg_e :: CInt -> Double -> Double -> (Double,Double) |
310 | conicalP_cyl_reg_e m lambda x = createSFR "conicalP_cyl_reg_e" $ gsl_sf_conicalP_cyl_reg_e m lambda x | 310 | conicalP_cyl_reg_e m lambda x = createSFR "conicalP_cyl_reg_e" $ gsl_sf_conicalP_cyl_reg_e m lambda x |
311 | foreign import ccall "legendre.h gsl_sf_conicalP_cyl_reg_e" gsl_sf_conicalP_cyl_reg_e :: CInt -> Double -> Double -> Ptr () -> IO CInt | 311 | foreign import ccall "gsl_sf_conicalP_cyl_reg_e" gsl_sf_conicalP_cyl_reg_e :: CInt -> Double -> Double -> Ptr () -> IO CInt |
312 | 312 | ||
313 | -- | wrapper for double gsl_sf_conicalP_cyl_reg(int m,double lambda,double x); | 313 | -- | wrapper for double gsl_sf_conicalP_cyl_reg(int m,double lambda,double x); |
314 | -- | 314 | -- |
315 | -- <http://www.google.com/search?q=gsl_sf_conicalP_cyl_reg&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 315 | -- <http://www.google.com/search?q=gsl_sf_conicalP_cyl_reg&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
316 | conicalP_cyl_reg :: CInt -> Double -> Double -> Double | 316 | conicalP_cyl_reg :: CInt -> Double -> Double -> Double |
317 | conicalP_cyl_reg = gsl_sf_conicalP_cyl_reg | 317 | conicalP_cyl_reg = gsl_sf_conicalP_cyl_reg |
318 | foreign import ccall "legendre.h gsl_sf_conicalP_cyl_reg" gsl_sf_conicalP_cyl_reg :: CInt -> Double -> Double -> Double | 318 | foreign import ccall "gsl_sf_conicalP_cyl_reg" gsl_sf_conicalP_cyl_reg :: CInt -> Double -> Double -> Double |
319 | 319 | ||
320 | -- | wrapper for int gsl_sf_legendre_H3d_0_e(double lambda,double eta,gsl_sf_result* result); | 320 | -- | wrapper for int gsl_sf_legendre_H3d_0_e(double lambda,double eta,gsl_sf_result* result); |
321 | -- | 321 | -- |
322 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_0_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 322 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_0_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
323 | legendre_H3d_0_e :: Double -> Double -> (Double,Double) | 323 | legendre_H3d_0_e :: Double -> Double -> (Double,Double) |
324 | legendre_H3d_0_e lambda eta = createSFR "legendre_H3d_0_e" $ gsl_sf_legendre_H3d_0_e lambda eta | 324 | legendre_H3d_0_e lambda eta = createSFR "legendre_H3d_0_e" $ gsl_sf_legendre_H3d_0_e lambda eta |
325 | foreign import ccall "legendre.h gsl_sf_legendre_H3d_0_e" gsl_sf_legendre_H3d_0_e :: Double -> Double -> Ptr () -> IO CInt | 325 | foreign import ccall "gsl_sf_legendre_H3d_0_e" gsl_sf_legendre_H3d_0_e :: Double -> Double -> Ptr () -> IO CInt |
326 | 326 | ||
327 | -- | wrapper for double gsl_sf_legendre_H3d_0(double lambda,double eta); | 327 | -- | wrapper for double gsl_sf_legendre_H3d_0(double lambda,double eta); |
328 | -- | 328 | -- |
329 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_0&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 329 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_0&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
330 | legendre_H3d_0 :: Double -> Double -> Double | 330 | legendre_H3d_0 :: Double -> Double -> Double |
331 | legendre_H3d_0 = gsl_sf_legendre_H3d_0 | 331 | legendre_H3d_0 = gsl_sf_legendre_H3d_0 |
332 | foreign import ccall "legendre.h gsl_sf_legendre_H3d_0" gsl_sf_legendre_H3d_0 :: Double -> Double -> Double | 332 | foreign import ccall "gsl_sf_legendre_H3d_0" gsl_sf_legendre_H3d_0 :: Double -> Double -> Double |
333 | 333 | ||
334 | -- | wrapper for int gsl_sf_legendre_H3d_1_e(double lambda,double eta,gsl_sf_result* result); | 334 | -- | wrapper for int gsl_sf_legendre_H3d_1_e(double lambda,double eta,gsl_sf_result* result); |
335 | -- | 335 | -- |
336 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 336 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
337 | legendre_H3d_1_e :: Double -> Double -> (Double,Double) | 337 | legendre_H3d_1_e :: Double -> Double -> (Double,Double) |
338 | legendre_H3d_1_e lambda eta = createSFR "legendre_H3d_1_e" $ gsl_sf_legendre_H3d_1_e lambda eta | 338 | legendre_H3d_1_e lambda eta = createSFR "legendre_H3d_1_e" $ gsl_sf_legendre_H3d_1_e lambda eta |
339 | foreign import ccall "legendre.h gsl_sf_legendre_H3d_1_e" gsl_sf_legendre_H3d_1_e :: Double -> Double -> Ptr () -> IO CInt | 339 | foreign import ccall "gsl_sf_legendre_H3d_1_e" gsl_sf_legendre_H3d_1_e :: Double -> Double -> Ptr () -> IO CInt |
340 | 340 | ||
341 | -- | wrapper for double gsl_sf_legendre_H3d_1(double lambda,double eta); | 341 | -- | wrapper for double gsl_sf_legendre_H3d_1(double lambda,double eta); |
342 | -- | 342 | -- |
343 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 343 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
344 | legendre_H3d_1 :: Double -> Double -> Double | 344 | legendre_H3d_1 :: Double -> Double -> Double |
345 | legendre_H3d_1 = gsl_sf_legendre_H3d_1 | 345 | legendre_H3d_1 = gsl_sf_legendre_H3d_1 |
346 | foreign import ccall "legendre.h gsl_sf_legendre_H3d_1" gsl_sf_legendre_H3d_1 :: Double -> Double -> Double | 346 | foreign import ccall "gsl_sf_legendre_H3d_1" gsl_sf_legendre_H3d_1 :: Double -> Double -> Double |
347 | 347 | ||
348 | -- | wrapper for int gsl_sf_legendre_H3d_e(int l,double lambda,double eta,gsl_sf_result* result); | 348 | -- | wrapper for int gsl_sf_legendre_H3d_e(int l,double lambda,double eta,gsl_sf_result* result); |
349 | -- | 349 | -- |
350 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 350 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
351 | legendre_H3d_e :: CInt -> Double -> Double -> (Double,Double) | 351 | legendre_H3d_e :: CInt -> Double -> Double -> (Double,Double) |
352 | legendre_H3d_e l lambda eta = createSFR "legendre_H3d_e" $ gsl_sf_legendre_H3d_e l lambda eta | 352 | legendre_H3d_e l lambda eta = createSFR "legendre_H3d_e" $ gsl_sf_legendre_H3d_e l lambda eta |
353 | foreign import ccall "legendre.h gsl_sf_legendre_H3d_e" gsl_sf_legendre_H3d_e :: CInt -> Double -> Double -> Ptr () -> IO CInt | 353 | foreign import ccall "gsl_sf_legendre_H3d_e" gsl_sf_legendre_H3d_e :: CInt -> Double -> Double -> Ptr () -> IO CInt |
354 | 354 | ||
355 | -- | wrapper for double gsl_sf_legendre_H3d(int l,double lambda,double eta); | 355 | -- | wrapper for double gsl_sf_legendre_H3d(int l,double lambda,double eta); |
356 | -- | 356 | -- |
357 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 357 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
358 | legendre_H3d :: CInt -> Double -> Double -> Double | 358 | legendre_H3d :: CInt -> Double -> Double -> Double |
359 | legendre_H3d = gsl_sf_legendre_H3d | 359 | legendre_H3d = gsl_sf_legendre_H3d |
360 | foreign import ccall "legendre.h gsl_sf_legendre_H3d" gsl_sf_legendre_H3d :: CInt -> Double -> Double -> Double | 360 | foreign import ccall "gsl_sf_legendre_H3d" gsl_sf_legendre_H3d :: CInt -> Double -> Double -> Double |
361 | 361 | ||
362 | -- | wrapper for int gsl_sf_legendre_H3d_array(int lmax,double lambda,double eta,double* result_array); | 362 | -- | wrapper for int gsl_sf_legendre_H3d_array(int lmax,double lambda,double eta,double* result_array); |
363 | -- | 363 | -- |
364 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 364 | -- <http://www.google.com/search?q=gsl_sf_legendre_H3d_array&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
365 | legendre_H3d_array :: CInt -> Double -> Double -> Ptr Double -> CInt | 365 | legendre_H3d_array :: CInt -> Double -> Double -> Ptr Double -> CInt |
366 | legendre_H3d_array = gsl_sf_legendre_H3d_array | 366 | legendre_H3d_array = gsl_sf_legendre_H3d_array |
367 | foreign import ccall "legendre.h gsl_sf_legendre_H3d_array" gsl_sf_legendre_H3d_array :: CInt -> Double -> Double -> Ptr Double -> CInt | 367 | foreign import ccall "gsl_sf_legendre_H3d_array" gsl_sf_legendre_H3d_array :: CInt -> Double -> Double -> Ptr Double -> CInt |