diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-07-28 18:35:00 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-07-28 18:35:00 +0000 |
commit | 8731b5e093e0014472e870bf5166e2d074d206c1 (patch) | |
tree | 76c49133991b25e6587d617185236a8c789e7023 /lib/GSL/Special.hs | |
parent | 774924233c87a20c31a3232cbd01d9bf5170a951 (diff) |
GSL.Special.Exp.hs
Diffstat (limited to 'lib/GSL/Special.hs')
-rw-r--r-- | lib/GSL/Special.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/GSL/Special.hs b/lib/GSL/Special.hs index 01aec2b..6786dc5 100644 --- a/lib/GSL/Special.hs +++ b/lib/GSL/Special.hs | |||
@@ -9,7 +9,7 @@ Maintainer : Alberto Ruiz (aruiz at um dot es) | |||
9 | Stability : provisional | 9 | Stability : provisional |
10 | Portability : uses ffi | 10 | Portability : uses ffi |
11 | 11 | ||
12 | Wrappers for a few special functions. | 12 | Wrappers for selected special functions. |
13 | 13 | ||
14 | <http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html#Special-Functions> | 14 | <http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html#Special-Functions> |
15 | -} | 15 | -} |
@@ -18,9 +18,8 @@ Wrappers for a few special functions. | |||
18 | module GSL.Special ( | 18 | module GSL.Special ( |
19 | module GSL.Special.Airy, | 19 | module GSL.Special.Airy, |
20 | module GSL.Special.Erf, | 20 | module GSL.Special.Erf, |
21 | module GSL.Special.Gamma, | 21 | module GSL.Special.Exp, |
22 | bessel_J0_e, | 22 | module GSL.Special.Gamma |
23 | exp_e10_e | ||
24 | ) | 23 | ) |
25 | where | 24 | where |
26 | 25 | ||
@@ -28,6 +27,7 @@ import Foreign | |||
28 | import GSL.Special.Internal | 27 | import GSL.Special.Internal |
29 | import GSL.Special.Gamma | 28 | import GSL.Special.Gamma |
30 | import GSL.Special.Erf | 29 | import GSL.Special.Erf |
30 | import GSL.Special.Exp | ||
31 | import GSL.Special.Airy | 31 | import GSL.Special.Airy |
32 | 32 | ||
33 | -------------------- simple functions -------------------------- | 33 | -------------------- simple functions -------------------------- |