summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra.hs
diff options
context:
space:
mode:
authorMatt Renaud <mrenaud92@gmail.com>2016-05-02 08:52:20 -0700
committerMatt Renaud <mrenaud92@gmail.com>2016-05-02 08:52:20 -0700
commitb667d2ba41523145050a671d47043598bb432078 (patch)
tree1a88bbc95458c898c4be5692ac017d2aedbe4a05 /packages/base/src/Numeric/LinearAlgebra.hs
parent316701a1a2b3d7e032edafccd6c5d843894b91c1 (diff)
Update numeric class top level documentation.
Noted that the numeric classes for Matrix and Vector which are defined elementwise are commonly referred to as the Hadamard (or Schur) product.
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 6a9c33a..b5bacf4 100644
--- a/packages/base/src/Numeric/LinearAlgebra.hs
+++ b/packages/base/src/Numeric/LinearAlgebra.hs
@@ -22,7 +22,8 @@ module Numeric.LinearAlgebra (
22 22
23 -- * Numeric classes 23 -- * Numeric classes
24 -- | 24 -- |
25 -- The standard numeric classes are defined elementwise: 25 -- The standard numeric classes are defined elementwise (commonly referred to
26 -- as the Hadamard product or the Schur product):
26 -- 27 --
27 -- >>> vector [1,2,3] * vector [3,0,-2] 28 -- >>> vector [1,2,3] * vector [3,0,-2]
28 -- fromList [3.0,0.0,-6.0] 29 -- fromList [3.0,0.0,-6.0]