diff options
author | Matthew Peddie <mpeddie@gmail.com> | 2015-04-26 12:17:00 +1000 |
---|---|---|
committer | Matthew Peddie <mpeddie@gmail.com> | 2015-04-26 12:17:00 +1000 |
commit | a25d6f45d7131bd86508f82870d2e24606a811e8 (patch) | |
tree | 52df8c1e8dda157896d4884bbd0dbfb439132d21 /packages/gsl/src/Numeric/GSL.hs | |
parent | e282d2b4c5f389941225d02df94e7baf38c4f38e (diff) |
Add a new module containing the GSL interpolation interface
Diffstat (limited to 'packages/gsl/src/Numeric/GSL.hs')
-rw-r--r-- | packages/gsl/src/Numeric/GSL.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/gsl/src/Numeric/GSL.hs b/packages/gsl/src/Numeric/GSL.hs index 61b8d7b..3f546bf 100644 --- a/packages/gsl/src/Numeric/GSL.hs +++ b/packages/gsl/src/Numeric/GSL.hs | |||
@@ -22,6 +22,7 @@ module Numeric.GSL ( | |||
22 | , module Numeric.GSL.Root | 22 | , module Numeric.GSL.Root |
23 | , module Numeric.GSL.ODE | 23 | , module Numeric.GSL.ODE |
24 | , module Numeric.GSL.Fitting | 24 | , module Numeric.GSL.Fitting |
25 | , module Numeric.GSL.Interpolation | ||
25 | , module Data.Complex | 26 | , module Data.Complex |
26 | , setErrorHandlerOff | 27 | , setErrorHandlerOff |
27 | ) where | 28 | ) where |
@@ -34,6 +35,7 @@ import Numeric.GSL.Minimization | |||
34 | import Numeric.GSL.Root | 35 | import Numeric.GSL.Root |
35 | import Numeric.GSL.ODE | 36 | import Numeric.GSL.ODE |
36 | import Numeric.GSL.Fitting | 37 | import Numeric.GSL.Fitting |
38 | import Numeric.GSL.Interpolation | ||
37 | import Data.Complex | 39 | import Data.Complex |
38 | 40 | ||
39 | 41 | ||