diff options
Diffstat (limited to 'lib/Numeric/Matrix.hs')
-rw-r--r-- | lib/Numeric/Matrix.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Numeric/Matrix.hs b/lib/Numeric/Matrix.hs index 26d6d6b..7bb79f3 100644 --- a/lib/Numeric/Matrix.hs +++ b/lib/Numeric/Matrix.hs | |||
@@ -34,7 +34,11 @@ module Numeric.Matrix ( | |||
34 | ctrans, | 34 | ctrans, |
35 | optimiseMult, | 35 | optimiseMult, |
36 | -- * Operators | 36 | -- * Operators |
37 | (<>), (<\>) | 37 | (<>), (<\>), |
38 | -- * IO | ||
39 | dispf, disps, dispcf, vecdisp, latexFormat, format, | ||
40 | loadMatrix, saveMatrix, fromFile, fileDimensions, | ||
41 | readMatrix | ||
38 | ) where | 42 | ) where |
39 | 43 | ||
40 | ------------------------------------------------------------------- | 44 | ------------------------------------------------------------------- |
@@ -43,6 +47,7 @@ import Data.Packed.Matrix | |||
43 | import Numeric.Vector | 47 | import Numeric.Vector |
44 | import Numeric.Chain | 48 | import Numeric.Chain |
45 | import Numeric.MatrixBoot | 49 | import Numeric.MatrixBoot |
50 | import Numeric.IO | ||
46 | import Numeric.LinearAlgebra.Algorithms | 51 | import Numeric.LinearAlgebra.Algorithms |
47 | 52 | ||
48 | ------------------------------------------------------------------- | 53 | ------------------------------------------------------------------- |