diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-07-29 15:43:21 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-07-29 15:43:21 +0000 |
commit | b9db4d25d87cd4ab0f493413db92fb41b7eacda9 (patch) | |
tree | a447fe6f7e16b3768e912064a033ce257040720e /lib/GSL/Special.hs | |
parent | b1b908c10ad7a393200651b4b23fc0b26efbc1b9 (diff) |
more automatic wrappers for simple special functions
Diffstat (limited to 'lib/GSL/Special.hs')
-rw-r--r-- | lib/GSL/Special.hs | 63 |
1 files changed, 53 insertions, 10 deletions
diff --git a/lib/GSL/Special.hs b/lib/GSL/Special.hs index 8124055..e9c1798 100644 --- a/lib/GSL/Special.hs +++ b/lib/GSL/Special.hs | |||
@@ -16,21 +16,64 @@ Wrappers for selected special functions. | |||
16 | ----------------------------------------------------------------------------- | 16 | ----------------------------------------------------------------------------- |
17 | 17 | ||
18 | module GSL.Special ( | 18 | module GSL.Special ( |
19 | module GSL.Special.Airy, | 19 | module GSL.Special.Airy |
20 | module GSL.Special.Bessel, | 20 | , module GSL.Special.Bessel |
21 | module GSL.Special.Erf, | 21 | , module GSL.Special.Clausen |
22 | module GSL.Special.Exp, | 22 | , module GSL.Special.Coulomb |
23 | module GSL.Special.Gamma | 23 | , module GSL.Special.Coupling |
24 | , module GSL.Special.Dawson | ||
25 | , module GSL.Special.Debye | ||
26 | , module GSL.Special.Dilog | ||
27 | , module GSL.Special.Elementary | ||
28 | , module GSL.Special.Ellint | ||
29 | , module GSL.Special.Erf | ||
30 | , module GSL.Special.Exp | ||
31 | , module GSL.Special.Expint | ||
32 | , module GSL.Special.Fermi_dirac | ||
33 | , module GSL.Special.Gamma | ||
34 | , module GSL.Special.Gegenbauer | ||
35 | , module GSL.Special.Hyperg | ||
36 | , module GSL.Special.Internal | ||
37 | , module GSL.Special.Laguerre | ||
38 | , module GSL.Special.Lambert | ||
39 | , module GSL.Special.Log | ||
40 | , module GSL.Special.Pow_int | ||
41 | , module GSL.Special.Psi | ||
42 | , module GSL.Special.Synchrotron | ||
43 | , module GSL.Special.Trig | ||
44 | , module GSL.Special.Zeta | ||
24 | ) | 45 | ) |
25 | where | 46 | where |
26 | 47 | ||
27 | import Foreign | 48 | import Foreign |
28 | import GSL.Special.Internal | 49 | import GSL.Special.Internal |
29 | import GSL.Special.Gamma | 50 | import GSL.Special.Airy hiding (Precision(..)) |
30 | import GSL.Special.Erf | 51 | import GSL.Special.Bessel |
31 | import GSL.Special.Exp | 52 | import GSL.Special.Clausen |
32 | import GSL.Special.Airy | 53 | import GSL.Special.Coulomb |
33 | import GSL.Special.Bessel | 54 | import GSL.Special.Coupling |
55 | import GSL.Special.Dawson | ||
56 | import GSL.Special.Debye | ||
57 | import GSL.Special.Dilog | ||
58 | import GSL.Special.Elementary | ||
59 | import GSL.Special.Ellint | ||
60 | import GSL.Special.Erf | ||
61 | import GSL.Special.Exp | ||
62 | import GSL.Special.Expint | ||
63 | import GSL.Special.Fermi_dirac | ||
64 | import GSL.Special.Gamma | ||
65 | import GSL.Special.Gegenbauer | ||
66 | import GSL.Special.Hyperg | ||
67 | import GSL.Special.Internal | ||
68 | import GSL.Special.Laguerre | ||
69 | import GSL.Special.Lambert | ||
70 | import GSL.Special.Log | ||
71 | import GSL.Special.Pow_int | ||
72 | import GSL.Special.Psi | ||
73 | import GSL.Special.Synchrotron | ||
74 | import GSL.Special.Trig | ||
75 | import GSL.Special.Zeta | ||
76 | |||
34 | 77 | ||
35 | -------------------- simple functions -------------------------- | 78 | -------------------- simple functions -------------------------- |
36 | 79 | ||