summaryrefslogtreecommitdiff
path: root/packages/special/lib/Numeric/GSL/Special
diff options
context:
space:
mode:
Diffstat (limited to 'packages/special/lib/Numeric/GSL/Special')
-rw-r--r--packages/special/lib/Numeric/GSL/Special/Gamma.hs5
-rw-r--r--packages/special/lib/Numeric/GSL/Special/Internal.hsc3
-rw-r--r--packages/special/lib/Numeric/GSL/Special/Log.hs5
-rw-r--r--packages/special/lib/Numeric/GSL/Special/Psi.hs5
-rw-r--r--packages/special/lib/Numeric/GSL/Special/Trig.hs25
5 files changed, 25 insertions, 18 deletions
diff --git a/packages/special/lib/Numeric/GSL/Special/Gamma.hs b/packages/special/lib/Numeric/GSL/Special/Gamma.hs
index 03b39c4..1a4ed4e 100644
--- a/packages/special/lib/Numeric/GSL/Special/Gamma.hs
+++ b/packages/special/lib/Numeric/GSL/Special/Gamma.hs
@@ -21,6 +21,7 @@ module Numeric.GSL.Special.Gamma(
21, gammastar 21, gammastar
22, gammainv_e 22, gammainv_e
23, gammainv 23, gammainv
24, lngamma_complex_e
24, taylorcoeff_e 25, taylorcoeff_e
25, taylorcoeff 26, taylorcoeff
26, fact_e 27, fact_e
@@ -95,8 +96,8 @@ gammainv :: Double -> Double
95gammainv = gsl_sf_gammainv 96gammainv = gsl_sf_gammainv
96foreign import ccall SAFE_CHEAP "gsl_sf_gammainv" gsl_sf_gammainv :: Double -> Double 97foreign import ccall SAFE_CHEAP "gsl_sf_gammainv" gsl_sf_gammainv :: Double -> Double
97 98
98lngamma_complex_e :: Double -> Double -> Ptr () -> (Double,Double) 99lngamma_complex_e :: Double -> Double -> ((Double,Double),(Double,Double))
99lngamma_complex_e zr zi lnr = createSFR "lngamma_complex_e" $ gsl_sf_lngamma_complex_e zr zi lnr 100lngamma_complex_e zr zi = create2SFR "lngamma_complex_e" $ gsl_sf_lngamma_complex_e zr zi
100foreign import ccall SAFE_CHEAP "gsl_sf_lngamma_complex_e" gsl_sf_lngamma_complex_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 101foreign import ccall SAFE_CHEAP "gsl_sf_lngamma_complex_e" gsl_sf_lngamma_complex_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
101 102
102taylorcoeff_e :: CInt -> Double -> (Double,Double) 103taylorcoeff_e :: CInt -> Double -> (Double,Double)
diff --git a/packages/special/lib/Numeric/GSL/Special/Internal.hsc b/packages/special/lib/Numeric/GSL/Special/Internal.hsc
index d1a9c57..ae735df 100644
--- a/packages/special/lib/Numeric/GSL/Special/Internal.hsc
+++ b/packages/special/lib/Numeric/GSL/Special/Internal.hsc
@@ -33,7 +33,6 @@ import Foreign
33import Data.Packed.Development(check,(//)) 33import Data.Packed.Development(check,(//))
34import Foreign.C.Types(CSize,CInt) 34import Foreign.C.Types(CSize,CInt)
35 35
36
37data Precision = PrecDouble | PrecSingle | PrecApprox 36data Precision = PrecDouble | PrecSingle | PrecApprox
38 37
39precCode :: Precision -> Int 38precCode :: Precision -> Int
@@ -90,7 +89,7 @@ createSFR s f = unsafePerformIO $ do
90 return (val,err) 89 return (val,err)
91 90
92---------------------------------------------------------------- 91----------------------------------------------------------------
93-- | access to two sf_result 92-- | access to two sf_result's
94create2SFR :: String -> (Ptr a -> Ptr a -> IO CInt) -> ((Double, Double),(Double, Double)) 93create2SFR :: String -> (Ptr a -> Ptr a -> IO CInt) -> ((Double, Double),(Double, Double))
95create2SFR s f = unsafePerformIO $ do 94create2SFR s f = unsafePerformIO $ do
96 p1 <- malloc :: IO (Ptr Gsl_sf_result) 95 p1 <- malloc :: IO (Ptr Gsl_sf_result)
diff --git a/packages/special/lib/Numeric/GSL/Special/Log.hs b/packages/special/lib/Numeric/GSL/Special/Log.hs
index a57b67a..7f3f9d6 100644
--- a/packages/special/lib/Numeric/GSL/Special/Log.hs
+++ b/packages/special/lib/Numeric/GSL/Special/Log.hs
@@ -17,6 +17,7 @@ module Numeric.GSL.Special.Log(
17, Numeric.GSL.Special.Log.log 17, Numeric.GSL.Special.Log.log
18, log_abs_e 18, log_abs_e
19, log_abs 19, log_abs
20, complex_log_e
20, log_1plusx_e 21, log_1plusx_e
21, log_1plusx 22, log_1plusx
22, log_1plusx_mx_e 23, log_1plusx_mx_e
@@ -43,8 +44,8 @@ log_abs :: Double -> Double
43log_abs = gsl_sf_log_abs 44log_abs = gsl_sf_log_abs
44foreign import ccall SAFE_CHEAP "gsl_sf_log_abs" gsl_sf_log_abs :: Double -> Double 45foreign import ccall SAFE_CHEAP "gsl_sf_log_abs" gsl_sf_log_abs :: Double -> Double
45 46
46complex_log_e :: Double -> Double -> Ptr () -> (Double,Double) 47complex_log_e :: Double -> Double -> ((Double,Double),(Double,Double))
47complex_log_e zr zi lnr = createSFR "complex_log_e" $ gsl_sf_complex_log_e zr zi lnr 48complex_log_e zr zi = create2SFR "complex_log_e" $ gsl_sf_complex_log_e zr zi
48foreign import ccall SAFE_CHEAP "gsl_sf_complex_log_e" gsl_sf_complex_log_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 49foreign import ccall SAFE_CHEAP "gsl_sf_complex_log_e" gsl_sf_complex_log_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
49 50
50log_1plusx_e :: Double -> (Double,Double) 51log_1plusx_e :: Double -> (Double,Double)
diff --git a/packages/special/lib/Numeric/GSL/Special/Psi.hs b/packages/special/lib/Numeric/GSL/Special/Psi.hs
index 4655b8c..cb4c756 100644
--- a/packages/special/lib/Numeric/GSL/Special/Psi.hs
+++ b/packages/special/lib/Numeric/GSL/Special/Psi.hs
@@ -19,6 +19,7 @@ module Numeric.GSL.Special.Psi(
19, psi 19, psi
20, psi_1piy_e 20, psi_1piy_e
21, psi_1piy 21, psi_1piy
22, complex_psi_e
22, psi_1_int_e 23, psi_1_int_e
23, psi_1_int 24, psi_1_int
24, psi_1_e 25, psi_1_e
@@ -55,8 +56,8 @@ psi_1piy :: Double -> Double
55psi_1piy = gsl_sf_psi_1piy 56psi_1piy = gsl_sf_psi_1piy
56foreign import ccall SAFE_CHEAP "gsl_sf_psi_1piy" gsl_sf_psi_1piy :: Double -> Double 57foreign import ccall SAFE_CHEAP "gsl_sf_psi_1piy" gsl_sf_psi_1piy :: Double -> Double
57 58
58complex_psi_e :: Double -> Double -> Ptr () -> (Double,Double) 59complex_psi_e :: Double -> Double -> ((Double,Double),(Double,Double))
59complex_psi_e x y result_re = createSFR "complex_psi_e" $ gsl_sf_complex_psi_e x y result_re 60complex_psi_e x y = create2SFR "complex_psi_e" $ gsl_sf_complex_psi_e x y
60foreign import ccall SAFE_CHEAP "gsl_sf_complex_psi_e" gsl_sf_complex_psi_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 61foreign import ccall SAFE_CHEAP "gsl_sf_complex_psi_e" gsl_sf_complex_psi_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
61 62
62psi_1_int_e :: CInt -> (Double,Double) 63psi_1_int_e :: CInt -> (Double,Double)
diff --git a/packages/special/lib/Numeric/GSL/Special/Trig.hs b/packages/special/lib/Numeric/GSL/Special/Trig.hs
index 4b7ae67..91c264a 100644
--- a/packages/special/lib/Numeric/GSL/Special/Trig.hs
+++ b/packages/special/lib/Numeric/GSL/Special/Trig.hs
@@ -19,12 +19,17 @@ module Numeric.GSL.Special.Trig(
19, Numeric.GSL.Special.Trig.cos 19, Numeric.GSL.Special.Trig.cos
20, hypot_e 20, hypot_e
21, hypot 21, hypot
22, complex_sin_e
23, complex_cos_e
24, complex_logsin_e
22, sinc_e 25, sinc_e
23, sinc 26, sinc
24, lnsinh_e 27, lnsinh_e
25, lnsinh 28, lnsinh
26, lncosh_e 29, lncosh_e
27, lncosh 30, lncosh
31, polar_to_rect
32, rect_to_polar
28, sin_err_e 33, sin_err_e
29, cos_err_e 34, cos_err_e
30, angle_restrict_symm 35, angle_restrict_symm
@@ -61,16 +66,16 @@ hypot :: Double -> Double -> Double
61hypot = gsl_sf_hypot 66hypot = gsl_sf_hypot
62foreign import ccall SAFE_CHEAP "gsl_sf_hypot" gsl_sf_hypot :: Double -> Double -> Double 67foreign import ccall SAFE_CHEAP "gsl_sf_hypot" gsl_sf_hypot :: Double -> Double -> Double
63 68
64complex_sin_e :: Double -> Double -> Ptr () -> (Double,Double) 69complex_sin_e :: Double -> Double -> ((Double,Double),(Double,Double))
65complex_sin_e zr zi szr = createSFR "complex_sin_e" $ gsl_sf_complex_sin_e zr zi szr 70complex_sin_e zr zi = create2SFR "complex_sin_e" $ gsl_sf_complex_sin_e zr zi
66foreign import ccall SAFE_CHEAP "gsl_sf_complex_sin_e" gsl_sf_complex_sin_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 71foreign import ccall SAFE_CHEAP "gsl_sf_complex_sin_e" gsl_sf_complex_sin_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
67 72
68complex_cos_e :: Double -> Double -> Ptr () -> (Double,Double) 73complex_cos_e :: Double -> Double -> ((Double,Double),(Double,Double))
69complex_cos_e zr zi czr = createSFR "complex_cos_e" $ gsl_sf_complex_cos_e zr zi czr 74complex_cos_e zr zi = create2SFR "complex_cos_e" $ gsl_sf_complex_cos_e zr zi
70foreign import ccall SAFE_CHEAP "gsl_sf_complex_cos_e" gsl_sf_complex_cos_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 75foreign import ccall SAFE_CHEAP "gsl_sf_complex_cos_e" gsl_sf_complex_cos_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
71 76
72complex_logsin_e :: Double -> Double -> Ptr () -> (Double,Double) 77complex_logsin_e :: Double -> Double -> ((Double,Double),(Double,Double))
73complex_logsin_e zr zi lszr = createSFR "complex_logsin_e" $ gsl_sf_complex_logsin_e zr zi lszr 78complex_logsin_e zr zi = create2SFR "complex_logsin_e" $ gsl_sf_complex_logsin_e zr zi
74foreign import ccall SAFE_CHEAP "gsl_sf_complex_logsin_e" gsl_sf_complex_logsin_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 79foreign import ccall SAFE_CHEAP "gsl_sf_complex_logsin_e" gsl_sf_complex_logsin_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
75 80
76sinc_e :: Double -> (Double,Double) 81sinc_e :: Double -> (Double,Double)
@@ -97,12 +102,12 @@ lncosh :: Double -> Double
97lncosh = gsl_sf_lncosh 102lncosh = gsl_sf_lncosh
98foreign import ccall SAFE_CHEAP "gsl_sf_lncosh" gsl_sf_lncosh :: Double -> Double 103foreign import ccall SAFE_CHEAP "gsl_sf_lncosh" gsl_sf_lncosh :: Double -> Double
99 104
100polar_to_rect :: Double -> Double -> Ptr () -> (Double,Double) 105polar_to_rect :: Double -> Double -> ((Double,Double),(Double,Double))
101polar_to_rect r theta x = createSFR "polar_to_rect" $ gsl_sf_polar_to_rect r theta x 106polar_to_rect r theta = create2SFR "polar_to_rect" $ gsl_sf_polar_to_rect r theta
102foreign import ccall SAFE_CHEAP "gsl_sf_polar_to_rect" gsl_sf_polar_to_rect :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 107foreign import ccall SAFE_CHEAP "gsl_sf_polar_to_rect" gsl_sf_polar_to_rect :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
103 108
104rect_to_polar :: Double -> Double -> Ptr () -> (Double,Double) 109rect_to_polar :: Double -> Double -> ((Double,Double),(Double,Double))
105rect_to_polar x y r = createSFR "rect_to_polar" $ gsl_sf_rect_to_polar x y r 110rect_to_polar x y = create2SFR "rect_to_polar" $ gsl_sf_rect_to_polar x y
106foreign import ccall SAFE_CHEAP "gsl_sf_rect_to_polar" gsl_sf_rect_to_polar :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 111foreign import ccall SAFE_CHEAP "gsl_sf_rect_to_polar" gsl_sf_rect_to_polar :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
107 112
108sin_err_e :: Double -> Double -> (Double,Double) 113sin_err_e :: Double -> Double -> (Double,Double)