summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs
diff options
context:
space:
mode:
authoridontgetoutmuch <dominic@steinitz.org>2018-04-01 05:43:38 -0700
committerGitHub <noreply@github.com>2018-04-01 05:43:38 -0700
commitc8c6a3e414bb08e3f818f58c121ddc99396b4f1e (patch)
treedaf3add31de83efcc74b41755c2d05c811242ce6 /packages/base/src/Numeric/LinearAlgebra/HMatrix.hs
parentd83b17190029c11e3ab8b504e5cdc917f5863120 (diff)
parent1a68793247b8845cefad4d157e4f4d25b1731b42 (diff)
Merge pull request #262 from idontgetoutmuch/master
Implement CI
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra/HMatrix.hs')
-rw-r--r--packages/base/src/Numeric/LinearAlgebra/HMatrix.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs b/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs
index 3a84645..57e5cf1 100644
--- a/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs
+++ b/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs
@@ -28,7 +28,9 @@ infixr 8 <·>
28(<·>) :: Numeric t => Vector t -> Vector t -> t 28(<·>) :: Numeric t => Vector t -> Vector t -> t
29(<·>) = dot 29(<·>) = dot
30 30
31app :: Numeric t => Matrix t -> Vector t -> Vector t
31app m v = m #> v 32app m v = m #> v
32 33
34mul :: Numeric t => Matrix t -> Matrix t -> Matrix t
33mul a b = a <> b 35mul a b = a <> b
34 36