summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs')
-rw-r--r--packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs27
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs b/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs
new file mode 100644
index 0000000..078a748
--- /dev/null
+++ b/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs
@@ -0,0 +1,27 @@
1-----------------------------------------------------------------------------
2{- |
3Module : Numeric.LinearAlgebra.HMatrix.Util
4Copyright : (c) Alberto Ruiz 2015
5License : BSD3
6Maintainer : Alberto Ruiz
7Stability : provisional
8
9-}
10-----------------------------------------------------------------------------
11
12module Numeric.LinearAlgebra.HMatrix.Util(
13 -- * Tools for the Kronecker product
14 --
15 -- | (see A. Fusiello, A matter of notation: Several uses of the Kronecker product in
16 -- 3d computer vision, Pattern Recognition Letters 28 (15) (2007) 2127-2132)
17
18 --
19 -- | @`vec` (a \<> x \<> b) == ('trans' b ` 'kronecker' ` a) \<> 'vec' x@
20 vec,
21 vech,
22 dup,
23 vtrans
24) where
25
26import Numeric.LinearAlgebra.Util
27