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