diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-04-10 09:57:57 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-04-10 09:57:57 +0200 |
commit | 4dc1ef825642ef4ecf86095c08b933cffe59f855 (patch) | |
tree | f78adf4e0681a3a1f4bb45f4745fcd725f301b69 /packages/base/src/Numeric | |
parent | 8a0c34ed00dd734b9dccd6c7582a370d39ceb89a (diff) |
added module HMatrix.Util
Diffstat (limited to 'packages/base/src/Numeric')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs | 27 |
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 | {- | | ||
3 | Module : Numeric.LinearAlgebra.HMatrix.Util | ||
4 | Copyright : (c) Alberto Ruiz 2015 | ||
5 | License : BSD3 | ||
6 | Maintainer : Alberto Ruiz | ||
7 | Stability : provisional | ||
8 | |||
9 | -} | ||
10 | ----------------------------------------------------------------------------- | ||
11 | |||
12 | module 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 | |||
26 | import Numeric.LinearAlgebra.Util | ||
27 | |||