diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-07-12 14:10:51 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-07-12 14:10:51 +0200 |
commit | b4873dbd201e0e887fb9cb5b5fe55774fa6fbe78 (patch) | |
tree | 16ae316ab96855c119d1da58d944645033afc1e3 /packages/base/src/Numeric/LinearAlgebra/HMatrix.hs | |
parent | b2341058a2214d22dc23f516b6f09d3270faa18d (diff) |
documentation
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra/HMatrix.hs')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/HMatrix.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs b/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs index 8adaaaf..bac1c0c 100644 --- a/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs +++ b/packages/base/src/Numeric/LinearAlgebra/HMatrix.hs | |||
@@ -13,7 +13,7 @@ compatibility with previous version, to be removed | |||
13 | 13 | ||
14 | module Numeric.LinearAlgebra.HMatrix ( | 14 | module Numeric.LinearAlgebra.HMatrix ( |
15 | module Numeric.LinearAlgebra, | 15 | module Numeric.LinearAlgebra, |
16 | (¦),(——),ℝ,ℂ,(<·>) | 16 | (¦),(——),ℝ,ℂ,(<·>),app,mul |
17 | ) where | 17 | ) where |
18 | 18 | ||
19 | import Numeric.LinearAlgebra | 19 | import Numeric.LinearAlgebra |
@@ -23,3 +23,7 @@ infixr 8 <·> | |||
23 | (<·>) :: Numeric t => Vector t -> Vector t -> t | 23 | (<·>) :: Numeric t => Vector t -> Vector t -> t |
24 | (<·>) = dot | 24 | (<·>) = dot |
25 | 25 | ||
26 | app m v = m #> v | ||
27 | |||
28 | mul a b = a <> b | ||
29 | |||