diff options
Diffstat (limited to 'lib/Numeric/GSL/Special/Synchrotron.hs')
-rw-r--r-- | lib/Numeric/GSL/Special/Synchrotron.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Numeric/GSL/Special/Synchrotron.hs b/lib/Numeric/GSL/Special/Synchrotron.hs index 8adcce8..7f2785d 100644 --- a/lib/Numeric/GSL/Special/Synchrotron.hs +++ b/lib/Numeric/GSL/Special/Synchrotron.hs | |||
@@ -30,25 +30,25 @@ import Numeric.GSL.Special.Internal | |||
30 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 30 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_1_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
31 | synchrotron_1_e :: Double -> (Double,Double) | 31 | synchrotron_1_e :: Double -> (Double,Double) |
32 | synchrotron_1_e x = createSFR "synchrotron_1_e" $ gsl_sf_synchrotron_1_e x | 32 | synchrotron_1_e x = createSFR "synchrotron_1_e" $ gsl_sf_synchrotron_1_e x |
33 | foreign import ccall "synchrotron.h gsl_sf_synchrotron_1_e" gsl_sf_synchrotron_1_e :: Double -> Ptr () -> IO CInt | 33 | foreign import ccall "gsl_sf_synchrotron_1_e" gsl_sf_synchrotron_1_e :: Double -> Ptr () -> IO CInt |
34 | 34 | ||
35 | -- | wrapper for double gsl_sf_synchrotron_1(double x); | 35 | -- | wrapper for double gsl_sf_synchrotron_1(double x); |
36 | -- | 36 | -- |
37 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 37 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_1&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
38 | synchrotron_1 :: Double -> Double | 38 | synchrotron_1 :: Double -> Double |
39 | synchrotron_1 = gsl_sf_synchrotron_1 | 39 | synchrotron_1 = gsl_sf_synchrotron_1 |
40 | foreign import ccall "synchrotron.h gsl_sf_synchrotron_1" gsl_sf_synchrotron_1 :: Double -> Double | 40 | foreign import ccall "gsl_sf_synchrotron_1" gsl_sf_synchrotron_1 :: Double -> Double |
41 | 41 | ||
42 | -- | wrapper for int gsl_sf_synchrotron_2_e(double x,gsl_sf_result* result); | 42 | -- | wrapper for int gsl_sf_synchrotron_2_e(double x,gsl_sf_result* result); |
43 | -- | 43 | -- |
44 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_2_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 44 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_2_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
45 | synchrotron_2_e :: Double -> (Double,Double) | 45 | synchrotron_2_e :: Double -> (Double,Double) |
46 | synchrotron_2_e x = createSFR "synchrotron_2_e" $ gsl_sf_synchrotron_2_e x | 46 | synchrotron_2_e x = createSFR "synchrotron_2_e" $ gsl_sf_synchrotron_2_e x |
47 | foreign import ccall "synchrotron.h gsl_sf_synchrotron_2_e" gsl_sf_synchrotron_2_e :: Double -> Ptr () -> IO CInt | 47 | foreign import ccall "gsl_sf_synchrotron_2_e" gsl_sf_synchrotron_2_e :: Double -> Ptr () -> IO CInt |
48 | 48 | ||
49 | -- | wrapper for double gsl_sf_synchrotron_2(double x); | 49 | -- | wrapper for double gsl_sf_synchrotron_2(double x); |
50 | -- | 50 | -- |
51 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_2&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 51 | -- <http://www.google.com/search?q=gsl_sf_synchrotron_2&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
52 | synchrotron_2 :: Double -> Double | 52 | synchrotron_2 :: Double -> Double |
53 | synchrotron_2 = gsl_sf_synchrotron_2 | 53 | synchrotron_2 = gsl_sf_synchrotron_2 |
54 | foreign import ccall "synchrotron.h gsl_sf_synchrotron_2" gsl_sf_synchrotron_2 :: Double -> Double | 54 | foreign import ccall "gsl_sf_synchrotron_2" gsl_sf_synchrotron_2 :: Double -> Double |