diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-16 20:10:57 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-16 20:10:57 +0200 |
commit | d4d9082a8d7d3eed6cb5f188fc3b476847dcac27 (patch) | |
tree | 0a19bc18be429454fd59c16fd46e29e1e7bae722 /packages/hmatrix/src/Numeric/LinearAlgebra.hs | |
parent | 51f4cc7b4b301142b8df73568ffaa448f9e6dd50 (diff) |
GSL.LinearAlgebra reorganized
Diffstat (limited to 'packages/hmatrix/src/Numeric/LinearAlgebra.hs')
-rw-r--r-- | packages/hmatrix/src/Numeric/LinearAlgebra.hs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/hmatrix/src/Numeric/LinearAlgebra.hs b/packages/hmatrix/src/Numeric/LinearAlgebra.hs new file mode 100644 index 0000000..1c2b1bb --- /dev/null +++ b/packages/hmatrix/src/Numeric/LinearAlgebra.hs | |||
@@ -0,0 +1,33 @@ | |||
1 | ----------------------------------------------------------------------------- | ||
2 | {- | | ||
3 | Module : Numeric.LinearAlgebra | ||
4 | Copyright : (c) Alberto Ruiz 2006-14 | ||
5 | License : GPL | ||
6 | |||
7 | Maintainer : Alberto Ruiz | ||
8 | Stability : provisional | ||
9 | |||
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 | -} | ||
19 | ----------------------------------------------------------------------------- | ||
20 | |||
21 | module Numeric.LinearAlgebra ( | ||
22 | module Numeric.Container, | ||
23 | module Numeric.LinearAlgebra.Algorithms, | ||
24 | module Numeric.LinearAlgebra.IO, | ||
25 | module Numeric.LinearAlgebra.Random | ||
26 | ) where | ||
27 | |||
28 | import Numeric.Container | ||
29 | import Numeric.LinearAlgebra.Algorithms | ||
30 | import Numeric.LinearAlgebra.Util() | ||
31 | import Numeric.LinearAlgebra.IO | ||
32 | import Numeric.LinearAlgebra.Random | ||
33 | |||