summaryrefslogtreecommitdiff
path: root/packages/special
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2010-10-20 07:19:06 +0000
committerAlberto Ruiz <aruiz@um.es>2010-10-20 07:19:06 +0000
commit7cfba6b4eb311590986a888255cd1dc594bd7264 (patch)
treeb01b83260b9d959cd8b32fe4021553bb1aadc8d4 /packages/special
parentceb049de0898a2cc58fac8191a049e65bad7a2f6 (diff)
mkComplex_e and other complex special functions
Diffstat (limited to 'packages/special')
-rw-r--r--packages/special/CHANGES5
-rw-r--r--packages/special/hmatrix-special.cabal13
-rw-r--r--packages/special/lib/Numeric/GSL/Special.hs32
-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
8 files changed, 71 insertions, 22 deletions
diff --git a/packages/special/CHANGES b/packages/special/CHANGES
new file mode 100644
index 0000000..79ac8ad
--- /dev/null
+++ b/packages/special/CHANGES
@@ -0,0 +1,5 @@
10.1.1
2=====
3
4Added a few complex functions and mkComplex_e
5
diff --git a/packages/special/hmatrix-special.cabal b/packages/special/hmatrix-special.cabal
index f9228ee..5ab0707 100644
--- a/packages/special/hmatrix-special.cabal
+++ b/packages/special/hmatrix-special.cabal
@@ -1,5 +1,5 @@
1Name: hmatrix-special 1Name: hmatrix-special
2Version: 0.1.0 2Version: 0.1.1
3License: GPL 3License: GPL
4License-file: LICENSE 4License-file: LICENSE
5Author: Alberto Ruiz 5Author: Alberto Ruiz
@@ -11,14 +11,15 @@ Description:
11 Interface to GSL special functions. 11 Interface to GSL special functions.
12 12
13Category: Math 13Category: Math
14tested-with: GHC ==6.10.4 14tested-with: GHC ==6.12.3
15 15
16cabal-version: >=1.2 16cabal-version: >=1.6
17build-type: Simple 17build-type: Simple
18 18
19extra-source-files: lib/Numeric/GSL/Special/auto.hs, 19extra-source-files: lib/Numeric/GSL/Special/auto.hs,
20 lib/Numeric/GSL/Special/autoall.sh, 20 lib/Numeric/GSL/Special/autoall.sh,
21 lib/Numeric/GSL/Special/replace.hs 21 lib/Numeric/GSL/Special/replace.hs,
22 CHANGES
22 23
23flag safe-cheap 24flag safe-cheap
24 description: use slower non-blocking "safe" foreign calls 25 description: use slower non-blocking "safe" foreign calls
@@ -72,3 +73,7 @@ library
72 else 73 else
73 cpp-options: -DSAFE_CHEAP=unsafe 74 cpp-options: -DSAFE_CHEAP=unsafe
74 75
76source-repository head
77 type: darcs
78 location: http://code.haskell.org/hmatrix
79
diff --git a/packages/special/lib/Numeric/GSL/Special.hs b/packages/special/lib/Numeric/GSL/Special.hs
index a8bbaf6..2994efb 100644
--- a/packages/special/lib/Numeric/GSL/Special.hs
+++ b/packages/special/lib/Numeric/GSL/Special.hs
@@ -15,6 +15,7 @@ Wrappers for selected special functions.
15----------------------------------------------------------------------------- 15-----------------------------------------------------------------------------
16 16
17module Numeric.GSL.Special ( 17module Numeric.GSL.Special (
18 -- * Functions
18 module Numeric.GSL.Special.Airy 19 module Numeric.GSL.Special.Airy
19, module Numeric.GSL.Special.Bessel 20, module Numeric.GSL.Special.Bessel
20, module Numeric.GSL.Special.Clausen 21, module Numeric.GSL.Special.Clausen
@@ -43,9 +44,12 @@ module Numeric.GSL.Special (
43, module Numeric.GSL.Special.Transport 44, module Numeric.GSL.Special.Transport
44, module Numeric.GSL.Special.Trig 45, module Numeric.GSL.Special.Trig
45, module Numeric.GSL.Special.Zeta 46, module Numeric.GSL.Special.Zeta
47-- * Util
48, mkComplex_e
46) 49)
47where 50where
48 51
52
49import Numeric.GSL.Special.Airy 53import Numeric.GSL.Special.Airy
50import Numeric.GSL.Special.Bessel 54import Numeric.GSL.Special.Bessel
51import Numeric.GSL.Special.Clausen 55import Numeric.GSL.Special.Clausen
@@ -74,3 +78,31 @@ import Numeric.GSL.Special.Synchrotron
74import Numeric.GSL.Special.Transport 78import Numeric.GSL.Special.Transport
75import Numeric.GSL.Special.Trig 79import Numeric.GSL.Special.Trig
76import Numeric.GSL.Special.Zeta 80import Numeric.GSL.Special.Zeta
81
82import Data.Complex
83
84----------------------------------------------------------------
85
86{- | Some GSL complex functions work with separate real and imaginary parts stored in real variables, obtaining tuples (value, error) for the real and imaginary parts of the result:
87
88> > import Numeric.GSL.Special.Dilog
89
90> > complex_dilog_xy_e 1 1
91> ((0.6168502750680847,1.1097853812294034e-14),(1.4603621167531193,1.1855504863267322e-14))
92
93We can use @mkComplex_e@ to work with \"normal\" complex numbers:
94
95> > import Numeric.GSL.Special(mkComplex_e)
96> > import Data.Complex
97
98> > let dilogC = fst . mkComplex_e complex_dilog_xy_e
99
100> > dilogC (1 :+ 1)
101> 0.6168502750680847 :+ 1.4603621167531193
102
103-}
104mkComplex_e :: (Double -> Double -> ((Double, Double), (Double, Double)))
105 -> Complex Double -> (Complex Double, Complex Double)
106mkComplex_e f (x :+ y) = (zr :+ zi, er :+ ei)
107 where ((zr,er),(zi,ei)) = f x y
108
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)