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.hs29
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{- |
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 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
28import Numeric.LinearAlgebra.Util
29