1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{- |
Module : GSL
Copyright : (c) Alberto Ruiz 2006-7
License : GPL-style
Maintainer : Alberto Ruiz (aruiz at um dot es)
Stability : provisional
Portability : uses -fffi and -fglasgow-exts
This module reexports the basic functionality and a collection of utilities (old interface)
-}
module GSL (
module Data.Packed.Vector,
module Data.Packed.Matrix,
--module Data.Packed.Tensor,
module LinearAlgebra.Algorithms,
module LAPACK,
module GSL.Integration,
module GSL.Differentiation,
module GSL.Fourier,
module GSL.Polynomials,
module GSL.Minimization,
module GSL.Matrix,
module GSL.Compat,
module Data.Packed.Plot,
module Complex,
setErrorHandlerOff
) where
import Data.Packed.Vector hiding (constant)
import Data.Packed.Matrix hiding ((><), multiply)
import LinearAlgebra.Algorithms hiding (pnorm)
import LAPACK
import GSL.Integration
import GSL.Differentiation
import GSL.Special
import GSL.Fourier
import GSL.Polynomials
import GSL.Minimization
import GSL.Matrix
import GSL.Compat
import Data.Packed.Plot
import Complex
import GSL.Special(setErrorHandlerOff)
|