summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra.hs
diff options
context:
space:
mode:
authorPeter Dobsan <pdobsan@gmail.com>2018-04-27 00:08:15 +0200
committerPeter Dobsan <pdobsan@gmail.com>2018-04-27 00:08:15 +0200
commit3ffea9114b573eb11e2e41ddfc6a8b69fdd6baed (patch)
tree71aaf81c11befe87189598d305330637599a80c3 /packages/base/src/Numeric/LinearAlgebra.hs
parentd83b17190029c11e3ab8b504e5cdc917f5863120 (diff)
Fixed vector show instance and related haddock entries.
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)