diff options
Diffstat (limited to 'lib/Numeric/GSL/Special/Log.hs')
-rw-r--r-- | lib/Numeric/GSL/Special/Log.hs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/Numeric/GSL/Special/Log.hs b/lib/Numeric/GSL/Special/Log.hs index fabbe76..370c5bd 100644 --- a/lib/Numeric/GSL/Special/Log.hs +++ b/lib/Numeric/GSL/Special/Log.hs | |||
@@ -34,60 +34,60 @@ import Numeric.GSL.Special.Internal | |||
34 | -- <http://www.google.com/search?q=gsl_sf_log_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 34 | -- <http://www.google.com/search?q=gsl_sf_log_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
35 | log_e :: Double -> (Double,Double) | 35 | log_e :: Double -> (Double,Double) |
36 | log_e x = createSFR "log_e" $ gsl_sf_log_e x | 36 | log_e x = createSFR "log_e" $ gsl_sf_log_e x |
37 | foreign import ccall "log.h gsl_sf_log_e" gsl_sf_log_e :: Double -> Ptr () -> IO CInt | 37 | foreign import ccall "gsl_sf_log_e" gsl_sf_log_e :: Double -> Ptr () -> IO CInt |
38 | 38 | ||
39 | -- | wrapper for double gsl_sf_log(double x); | 39 | -- | wrapper for double gsl_sf_log(double x); |
40 | -- | 40 | -- |
41 | -- <http://www.google.com/search?q=gsl_sf_log&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 41 | -- <http://www.google.com/search?q=gsl_sf_log&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
42 | log :: Double -> Double | 42 | log :: Double -> Double |
43 | log = gsl_sf_log | 43 | log = gsl_sf_log |
44 | foreign import ccall "log.h gsl_sf_log" gsl_sf_log :: Double -> Double | 44 | foreign import ccall "gsl_sf_log" gsl_sf_log :: Double -> Double |
45 | 45 | ||
46 | -- | wrapper for int gsl_sf_log_abs_e(double x,gsl_sf_result* result); | 46 | -- | wrapper for int gsl_sf_log_abs_e(double x,gsl_sf_result* result); |
47 | -- | 47 | -- |
48 | -- <http://www.google.com/search?q=gsl_sf_log_abs_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 48 | -- <http://www.google.com/search?q=gsl_sf_log_abs_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
49 | log_abs_e :: Double -> (Double,Double) | 49 | log_abs_e :: Double -> (Double,Double) |
50 | log_abs_e x = createSFR "log_abs_e" $ gsl_sf_log_abs_e x | 50 | log_abs_e x = createSFR "log_abs_e" $ gsl_sf_log_abs_e x |
51 | foreign import ccall "log.h gsl_sf_log_abs_e" gsl_sf_log_abs_e :: Double -> Ptr () -> IO CInt | 51 | foreign import ccall "gsl_sf_log_abs_e" gsl_sf_log_abs_e :: Double -> Ptr () -> IO CInt |
52 | 52 | ||
53 | -- | wrapper for double gsl_sf_log_abs(double x); | 53 | -- | wrapper for double gsl_sf_log_abs(double x); |
54 | -- | 54 | -- |
55 | -- <http://www.google.com/search?q=gsl_sf_log_abs&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 55 | -- <http://www.google.com/search?q=gsl_sf_log_abs&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
56 | log_abs :: Double -> Double | 56 | log_abs :: Double -> Double |
57 | log_abs = gsl_sf_log_abs | 57 | log_abs = gsl_sf_log_abs |
58 | foreign import ccall "log.h gsl_sf_log_abs" gsl_sf_log_abs :: Double -> Double | 58 | foreign import ccall "gsl_sf_log_abs" gsl_sf_log_abs :: Double -> Double |
59 | 59 | ||
60 | -- | wrapper for int gsl_sf_complex_log_e(double zr,double zi,gsl_sf_result* lnr,gsl_sf_result* theta); | 60 | -- | wrapper for int gsl_sf_complex_log_e(double zr,double zi,gsl_sf_result* lnr,gsl_sf_result* theta); |
61 | -- | 61 | -- |
62 | -- <http://www.google.com/search?q=gsl_sf_complex_log_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 62 | -- <http://www.google.com/search?q=gsl_sf_complex_log_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
63 | complex_log_e :: Double -> Double -> Ptr () -> (Double,Double) | 63 | complex_log_e :: Double -> Double -> Ptr () -> (Double,Double) |
64 | complex_log_e zr zi lnr = createSFR "complex_log_e" $ gsl_sf_complex_log_e zr zi lnr | 64 | complex_log_e zr zi lnr = createSFR "complex_log_e" $ gsl_sf_complex_log_e zr zi lnr |
65 | foreign import ccall "log.h gsl_sf_complex_log_e" gsl_sf_complex_log_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt | 65 | foreign import ccall "gsl_sf_complex_log_e" gsl_sf_complex_log_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt |
66 | 66 | ||
67 | -- | wrapper for int gsl_sf_log_1plusx_e(double x,gsl_sf_result* result); | 67 | -- | wrapper for int gsl_sf_log_1plusx_e(double x,gsl_sf_result* result); |
68 | -- | 68 | -- |
69 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 69 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
70 | log_1plusx_e :: Double -> (Double,Double) | 70 | log_1plusx_e :: Double -> (Double,Double) |
71 | log_1plusx_e x = createSFR "log_1plusx_e" $ gsl_sf_log_1plusx_e x | 71 | log_1plusx_e x = createSFR "log_1plusx_e" $ gsl_sf_log_1plusx_e x |
72 | foreign import ccall "log.h gsl_sf_log_1plusx_e" gsl_sf_log_1plusx_e :: Double -> Ptr () -> IO CInt | 72 | foreign import ccall "gsl_sf_log_1plusx_e" gsl_sf_log_1plusx_e :: Double -> Ptr () -> IO CInt |
73 | 73 | ||
74 | -- | wrapper for double gsl_sf_log_1plusx(double x); | 74 | -- | wrapper for double gsl_sf_log_1plusx(double x); |
75 | -- | 75 | -- |
76 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 76 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
77 | log_1plusx :: Double -> Double | 77 | log_1plusx :: Double -> Double |
78 | log_1plusx = gsl_sf_log_1plusx | 78 | log_1plusx = gsl_sf_log_1plusx |
79 | foreign import ccall "log.h gsl_sf_log_1plusx" gsl_sf_log_1plusx :: Double -> Double | 79 | foreign import ccall "gsl_sf_log_1plusx" gsl_sf_log_1plusx :: Double -> Double |
80 | 80 | ||
81 | -- | wrapper for int gsl_sf_log_1plusx_mx_e(double x,gsl_sf_result* result); | 81 | -- | wrapper for int gsl_sf_log_1plusx_mx_e(double x,gsl_sf_result* result); |
82 | -- | 82 | -- |
83 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx_mx_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 83 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx_mx_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
84 | log_1plusx_mx_e :: Double -> (Double,Double) | 84 | log_1plusx_mx_e :: Double -> (Double,Double) |
85 | log_1plusx_mx_e x = createSFR "log_1plusx_mx_e" $ gsl_sf_log_1plusx_mx_e x | 85 | log_1plusx_mx_e x = createSFR "log_1plusx_mx_e" $ gsl_sf_log_1plusx_mx_e x |
86 | foreign import ccall "log.h gsl_sf_log_1plusx_mx_e" gsl_sf_log_1plusx_mx_e :: Double -> Ptr () -> IO CInt | 86 | foreign import ccall "gsl_sf_log_1plusx_mx_e" gsl_sf_log_1plusx_mx_e :: Double -> Ptr () -> IO CInt |
87 | 87 | ||
88 | -- | wrapper for double gsl_sf_log_1plusx_mx(double x); | 88 | -- | wrapper for double gsl_sf_log_1plusx_mx(double x); |
89 | -- | 89 | -- |
90 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx_mx&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 90 | -- <http://www.google.com/search?q=gsl_sf_log_1plusx_mx&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
91 | log_1plusx_mx :: Double -> Double | 91 | log_1plusx_mx :: Double -> Double |
92 | log_1plusx_mx = gsl_sf_log_1plusx_mx | 92 | log_1plusx_mx = gsl_sf_log_1plusx_mx |
93 | foreign import ccall "log.h gsl_sf_log_1plusx_mx" gsl_sf_log_1plusx_mx :: Double -> Double | 93 | foreign import ccall "gsl_sf_log_1plusx_mx" gsl_sf_log_1plusx_mx :: Double -> Double |