diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-16 20:57:13 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-16 20:57:13 +0200 |
commit | fd94ecb3c3032beccdca4a4dee38bb306f57cd8b (patch) | |
tree | 81d7318217d6da4a057e587003b44425afe6ddcd /packages/hmatrix/src/Numeric/LinearAlgebra.hs | |
parent | d4d9082a8d7d3eed6cb5f188fc3b476847dcac27 (diff) |
Numeric.Container compatible
Diffstat (limited to 'packages/hmatrix/src/Numeric/LinearAlgebra.hs')
-rw-r--r-- | packages/hmatrix/src/Numeric/LinearAlgebra.hs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/packages/hmatrix/src/Numeric/LinearAlgebra.hs b/packages/hmatrix/src/Numeric/LinearAlgebra.hs index 1c2b1bb..71ed808 100644 --- a/packages/hmatrix/src/Numeric/LinearAlgebra.hs +++ b/packages/hmatrix/src/Numeric/LinearAlgebra.hs | |||
@@ -3,31 +3,18 @@ | |||
3 | Module : Numeric.LinearAlgebra | 3 | Module : Numeric.LinearAlgebra |
4 | Copyright : (c) Alberto Ruiz 2006-14 | 4 | Copyright : (c) Alberto Ruiz 2006-14 |
5 | License : GPL | 5 | License : GPL |
6 | |||
7 | Maintainer : Alberto Ruiz | 6 | Maintainer : Alberto Ruiz |
8 | Stability : provisional | 7 | Stability : provisional |
9 | 8 | ||
10 | |||
11 | This module reexports all normally required functions for Linear Algebra applications. | ||
12 | |||
13 | It also provides instances of standard classes 'Show', 'Read', 'Eq', | ||
14 | 'Num', 'Fractional', and 'Floating' for 'Vector' and 'Matrix'. | ||
15 | In arithmetic operations one-component vectors and matrices automatically | ||
16 | expand to match the dimensions of the other operand. | ||
17 | |||
18 | -} | 9 | -} |
19 | ----------------------------------------------------------------------------- | 10 | ----------------------------------------------------------------------------- |
20 | 11 | ||
21 | module Numeric.LinearAlgebra ( | 12 | module Numeric.LinearAlgebra ( |
22 | module Numeric.Container, | 13 | module Numeric.Container, |
23 | module Numeric.LinearAlgebra.Algorithms, | 14 | module Numeric.LinearAlgebra.Algorithms, |
24 | module Numeric.LinearAlgebra.IO, | ||
25 | module Numeric.LinearAlgebra.Random | ||
26 | ) where | 15 | ) where |
27 | 16 | ||
28 | import Numeric.Container | 17 | import Numeric.Container |
29 | import Numeric.LinearAlgebra.Algorithms | 18 | import Numeric.LinearAlgebra.Algorithms |
30 | import Numeric.LinearAlgebra.Util() | 19 | import Numeric.LinearAlgebra.Util() |
31 | import Numeric.LinearAlgebra.IO | ||
32 | import Numeric.LinearAlgebra.Random | ||
33 | 20 | ||