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.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra.hs b/lib/Numeric/LinearAlgebra.hs
index 3df9bd7..da4a4b5 100644
--- a/lib/Numeric/LinearAlgebra.hs
+++ b/lib/Numeric/LinearAlgebra.hs
@@ -15,9 +15,13 @@ This module reexports all normally required functions for Linear Algebra applica
15module Numeric.LinearAlgebra ( 15module Numeric.LinearAlgebra (
16 module Numeric.LinearAlgebra.Algorithms, 16 module Numeric.LinearAlgebra.Algorithms,
17 module Numeric.LinearAlgebra.Interface, 17 module Numeric.LinearAlgebra.Interface,
18 module Numeric.LinearAlgebra.Linear 18 module Numeric.LinearAlgebra.Linear,
19 module Numeric.Matrix,
20 module Numeric.Vector
19) where 21) where
20 22
21import Numeric.LinearAlgebra.Algorithms 23import Numeric.LinearAlgebra.Algorithms
22import Numeric.LinearAlgebra.Interface 24import Numeric.LinearAlgebra.Interface
23import Numeric.LinearAlgebra.Linear 25import Numeric.LinearAlgebra.Linear
26import Numeric.Matrix
27import Numeric.Vector