diff options
Diffstat (limited to 'lib/Numeric/LinearAlgebra.hs')
-rw-r--r-- | lib/Numeric/LinearAlgebra.hs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra.hs b/lib/Numeric/LinearAlgebra.hs new file mode 100644 index 0000000..f3190a2 --- /dev/null +++ b/lib/Numeric/LinearAlgebra.hs | |||
@@ -0,0 +1,27 @@ | |||
1 | ----------------------------------------------------------------------------- | ||
2 | {- | | ||
3 | Module : Numeric.LinearAlgebra | ||
4 | Copyright : (c) Alberto Ruiz 2006-7 | ||
5 | License : GPL-style | ||
6 | |||
7 | Maintainer : Alberto Ruiz (aruiz at um dot es) | ||
8 | Stability : provisional | ||
9 | Portability : uses ffi | ||
10 | |||
11 | Basic matrix computations implemented by BLAS, LAPACK and GSL. | ||
12 | |||
13 | -} | ||
14 | ----------------------------------------------------------------------------- | ||
15 | module Numeric.LinearAlgebra ( | ||
16 | module Data.Packed, | ||
17 | module Numeric.LinearAlgebra.Linear, | ||
18 | module Numeric.LinearAlgebra.Algorithms, | ||
19 | module Numeric.LinearAlgebra.Instances, | ||
20 | module Numeric.LinearAlgebra.Interface | ||
21 | ) where | ||
22 | |||
23 | import Data.Packed | ||
24 | import Numeric.LinearAlgebra.Linear | ||
25 | import Numeric.LinearAlgebra.Algorithms | ||
26 | import Numeric.LinearAlgebra.Instances | ||
27 | import Numeric.LinearAlgebra.Interface | ||