diff options
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra/HMatrix')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs b/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs deleted file mode 100644 index 818b226..0000000 --- a/packages/base/src/Numeric/LinearAlgebra/HMatrix/Util.hs +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
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 | unitary, | ||
14 | pairwiseD2, | ||
15 | -- * Tools for the Kronecker product | ||
16 | -- | ||
17 | -- | (see A. Fusiello, A matter of notation: Several uses of the Kronecker product in | ||
18 | -- 3d computer vision, Pattern Recognition Letters 28 (15) (2007) 2127-2132) | ||
19 | |||
20 | -- | ||
21 | -- | @`vec` (a \<> x \<> b) == ('trans' b ` 'kronecker' ` a) \<> 'vec' x@ | ||
22 | vec, | ||
23 | vech, | ||
24 | dup, | ||
25 | vtrans | ||
26 | ) where | ||
27 | |||
28 | import Numeric.LinearAlgebra.Util | ||
29 | |||