summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra.hs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra.hs')
-rw-r--r--packages/base/src/Numeric/LinearAlgebra.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra.hs b/packages/base/src/Numeric/LinearAlgebra.hs
index 73d4a13..520eeb7 100644
--- a/packages/base/src/Numeric/LinearAlgebra.hs
+++ b/packages/base/src/Numeric/LinearAlgebra.hs
@@ -27,7 +27,8 @@ module Numeric.LinearAlgebra (
27 -- as the Hadamard product or the Schur product): 27 -- as the Hadamard product or the Schur product):
28 -- 28 --
29 -- >>> vector [1,2,3] * vector [3,0,-2] 29 -- >>> vector [1,2,3] * vector [3,0,-2]
30 -- fromList [3.0,0.0,-6.0] 30 -- [3.0,0.0,-6.0]
31 -- it :: Vector R
31 -- 32 --
32 -- >>> matrix 3 [1..9] * ident 3 33 -- >>> matrix 3 [1..9] * ident 3
33 -- (3><3) 34 -- (3><3)