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 970c77e..91923e9 100644
--- a/packages/base/src/Numeric/LinearAlgebra.hs
+++ b/packages/base/src/Numeric/LinearAlgebra.hs
@@ -29,7 +29,8 @@ module Numeric.LinearAlgebra (
29 -- as the Hadamard product or the Schur product): 29 -- as the Hadamard product or the Schur product):
30 -- 30 --
31 -- >>> vector [1,2,3] * vector [3,0,-2] 31 -- >>> vector [1,2,3] * vector [3,0,-2]
32 -- fromList [3.0,0.0,-6.0] 32 -- [3.0,0.0,-6.0]
33 -- it :: Vector R
33 -- 34 --
34 -- >>> matrix 3 [1..9] * ident 3 35 -- >>> matrix 3 [1..9] * ident 3
35 -- (3><3) 36 -- (3><3)