diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-10-01 15:04:16 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-10-01 15:04:16 +0000 |
commit | c99b8fd6e3f8a2fb365ec12baf838f864b118ece (patch) | |
tree | 11b5b8515861fe88d547253ae10c2182d5fadaf2 /lib/Numeric/LinearAlgebra.hs | |
parent | 768f08d4134a066d773d56a9c03ae688e3850352 (diff) |
LinearAlgebra and GSL moved to Numeric
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 | ||