diff options
Diffstat (limited to 'lib/LinearAlgebra.hs')
-rw-r--r-- | lib/LinearAlgebra.hs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/LinearAlgebra.hs b/lib/LinearAlgebra.hs index b0c8b9d..3b56fc4 100644 --- a/lib/LinearAlgebra.hs +++ b/lib/LinearAlgebra.hs | |||
@@ -13,6 +13,19 @@ Some linear algebra algorithms, implemented by means of BLAS, LAPACK or GSL. | |||
13 | -} | 13 | -} |
14 | ----------------------------------------------------------------------------- | 14 | ----------------------------------------------------------------------------- |
15 | module LinearAlgebra ( | 15 | module LinearAlgebra ( |
16 | 16 | module Data.Packed.Vector, | |
17 | module Data.Packed.Matrix, | ||
18 | module LinearAlgebra.Linear, | ||
19 | module LAPACK, | ||
20 | module GSL.Matrix, | ||
21 | module LinearAlgebra.Algorithms, | ||
22 | module Complex | ||
17 | ) where | 23 | ) where |
18 | 24 | ||
25 | import LinearAlgebra.Linear | ||
26 | import LinearAlgebra.Algorithms | ||
27 | import LAPACK | ||
28 | import GSL.Matrix | ||
29 | import Data.Packed.Matrix | ||
30 | import Data.Packed.Vector | ||
31 | import Complex \ No newline at end of file | ||