summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra.hs
diff options
context:
space:
mode:
authoridontgetoutmuch <dominic@steinitz.org>2018-05-20 17:42:34 +0200
committerGitHub <noreply@github.com>2018-05-20 17:42:34 +0200
commit2df73625b693b363f7ffc399b05aaae4cbef73cd (patch)
treec8d63ba30c730d02b979faa46856b0554d48948e /packages/base/src/Numeric/LinearAlgebra.hs
parent41638b98b893777ab52ab155dcbf5f3df4a548f8 (diff)
parent39a702012eb990ec7e0074632821416669e47bab (diff)
Merge pull request #270 from pdobsan/master
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 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)