summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2016-05-02 20:10:02 +0200
committerAlberto Ruiz <aruiz@um.es>2016-05-02 20:10:02 +0200
commit42a88fbcb6bd1d2c4dc18fae5e962bd34fb316a1 (patch)
tree1a88bbc95458c898c4be5692ac017d2aedbe4a05
parent316701a1a2b3d7e032edafccd6c5d843894b91c1 (diff)
parentb667d2ba41523145050a671d47043598bb432078 (diff)
Merge pull request #188 from m-renaud/patch-1
Update numeric class top level documentation.
-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]