summaryrefslogtreecommitdiff
path: root/lib/Numeric/Container.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/Container.hs')
-rw-r--r--lib/Numeric/Container.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Numeric/Container.hs b/lib/Numeric/Container.hs
index dea8a79..7e46147 100644
--- a/lib/Numeric/Container.hs
+++ b/lib/Numeric/Container.hs
@@ -38,7 +38,7 @@ module Numeric.Container (
38 -- * Matrix product 38 -- * Matrix product
39 Product(..), udot, 39 Product(..), udot,
40 Mul(..), 40 Mul(..),
41 Contraction(..), mmul, 41 Contraction(..),
42 optimiseMult, 42 optimiseMult,
43 mXm,mXv,vXm,LSDiv(..), cdot, (·), dot, (<.>), 43 mXm,mXv,vXm,LSDiv(..), cdot, (·), dot, (<.>),
44 outer, kronecker, 44 outer, kronecker,
@@ -296,8 +296,8 @@ meanCov x = (med,cov) where
296dot :: Product e => Vector e -> Vector e -> e 296dot :: Product e => Vector e -> Vector e -> e
297dot = udot 297dot = udot
298 298
299{-# DEPRECATED (<.>) "use udot or (×)" #-} 299-- | contraction operator, equivalent to (x)
300infixl 7 <.> 300infixr 7 <.>
301(<.>) :: Product e => Vector e -> Vector e -> e 301(<.>) :: Contraction a b c => a -> b -> c
302(<.>) = udot 302(<.>) = (×)
303 303