summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra.hs')
-rw-r--r--lib/Numeric/LinearAlgebra.hs19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/Numeric/LinearAlgebra.hs b/lib/Numeric/LinearAlgebra.hs
index edfd87e..6b1a0bd 100644
--- a/lib/Numeric/LinearAlgebra.hs
+++ b/lib/Numeric/LinearAlgebra.hs
@@ -1,7 +1,7 @@
1----------------------------------------------------------------------------- 1-----------------------------------------------------------------------------
2{- | 2{- |
3Module : Numeric.LinearAlgebra 3Module : Numeric.LinearAlgebra
4Copyright : (c) Alberto Ruiz 2006-9 4Copyright : (c) Alberto Ruiz 2006-10
5License : GPL-style 5License : GPL-style
6 6
7Maintainer : Alberto Ruiz (aruiz at um dot es) 7Maintainer : Alberto Ruiz (aruiz at um dot es)
@@ -10,16 +10,19 @@ Portability : uses ffi
10 10
11This module reexports all normally required functions for Linear Algebra applications. 11This module reexports all normally required functions for Linear Algebra applications.
12 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
13-} 18-}
14----------------------------------------------------------------------------- 19-----------------------------------------------------------------------------
15module Numeric.LinearAlgebra ( 20module Numeric.LinearAlgebra (
16 module Numeric.LinearAlgebra.Algorithms, 21 module Numeric.Container,
17-- module Numeric.LinearAlgebra.Interface, 22 module Numeric.LinearAlgebra.Algorithms
18 module Numeric.Matrix,
19 module Data.Packed.Random
20) where 23) where
21 24
25import Numeric.Container
22import Numeric.LinearAlgebra.Algorithms 26import Numeric.LinearAlgebra.Algorithms
23--import Numeric.LinearAlgebra.Interface 27import Numeric.Matrix()
24import Numeric.Matrix 28import Numeric.Vector() \ No newline at end of file
25import Data.Packed.Random