summaryrefslogtreecommitdiff
path: root/packages/hmatrix/src/Numeric/HMatrix.hs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/hmatrix/src/Numeric/HMatrix.hs')
-rw-r--r--packages/hmatrix/src/Numeric/HMatrix.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/hmatrix/src/Numeric/HMatrix.hs b/packages/hmatrix/src/Numeric/HMatrix.hs
index 2e01454..c8742c4 100644
--- a/packages/hmatrix/src/Numeric/HMatrix.hs
+++ b/packages/hmatrix/src/Numeric/HMatrix.hs
@@ -39,7 +39,7 @@ module Numeric.HMatrix (
39 -- 39 --
40 40
41 -- * Products 41 -- * Products
42 (×), 42 (<.>),
43 43
44 -- | The matrix product is also implemented in the "Data.Monoid" instance for Matrix, where 44 -- | The matrix product is also implemented in the "Data.Monoid" instance for Matrix, where
45 -- single-element matrices (created from numeric literals or using 'scalar') 45 -- single-element matrices (created from numeric literals or using 'scalar')
@@ -53,7 +53,8 @@ module Numeric.HMatrix (
53 -- 53 --
54 -- mconcat uses 'optimiseMult' to get the optimal association order. 54 -- mconcat uses 'optimiseMult' to get the optimal association order.
55 55
56 (·), outer, kronecker, cross, 56 (◇),
57 outer, kronecker, cross,
57 scale, 58 scale,
58 sumElements, prodElements, absSum, 59 sumElements, prodElements, absSum,
59 60
@@ -123,7 +124,7 @@ module Numeric.HMatrix (
123 rand, randn, RandDist(..), randomVector, gaussianSample, uniformSample, 124 rand, randn, RandDist(..), randomVector, gaussianSample, uniformSample,
124 125
125 -- * Misc 126 -- * Misc
126 meanCov, peps, relativeError, haussholder, optimiseMult, udot, cdot, (<.>) 127 meanCov, peps, relativeError, haussholder, optimiseMult, udot
127) where 128) where
128 129
129import Numeric.HMatrix.Data 130import Numeric.HMatrix.Data