summaryrefslogtreecommitdiff
path: root/packages/hmatrix/src/Numeric/LinearAlgebra.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-05-16 20:10:57 +0200
committerAlberto Ruiz <aruiz@um.es>2014-05-16 20:10:57 +0200
commitd4d9082a8d7d3eed6cb5f188fc3b476847dcac27 (patch)
tree0a19bc18be429454fd59c16fd46e29e1e7bae722 /packages/hmatrix/src/Numeric/LinearAlgebra.hs
parent51f4cc7b4b301142b8df73568ffaa448f9e6dd50 (diff)
GSL.LinearAlgebra reorganized
Diffstat (limited to 'packages/hmatrix/src/Numeric/LinearAlgebra.hs')
-rw-r--r--packages/hmatrix/src/Numeric/LinearAlgebra.hs33
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{- |
3Module : Numeric.LinearAlgebra
4Copyright : (c) Alberto Ruiz 2006-14
5License : GPL
6
7Maintainer : Alberto Ruiz
8Stability : provisional
9
10
11This module reexports all normally required functions for Linear Algebra applications.
12
13It also provides instances of standard classes 'Show', 'Read', 'Eq',
14'Num', 'Fractional', and 'Floating' for 'Vector' and 'Matrix'.
15In arithmetic operations one-component vectors and matrices automatically
16expand to match the dimensions of the other operand.
17
18-}
19-----------------------------------------------------------------------------
20
21module Numeric.LinearAlgebra (
22 module Numeric.Container,
23 module Numeric.LinearAlgebra.Algorithms,
24 module Numeric.LinearAlgebra.IO,
25 module Numeric.LinearAlgebra.Random
26) where
27
28import Numeric.Container
29import Numeric.LinearAlgebra.Algorithms
30import Numeric.LinearAlgebra.Util()
31import Numeric.LinearAlgebra.IO
32import Numeric.LinearAlgebra.Random
33