blob: 8adaaafa43985e0a2acd66845808ad04c144dcc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--------------------------------------------------------------------------------
{- |
Module : Numeric.LinearAlgebra.HMatrix
Copyright : (c) Alberto Ruiz 2006-14
License : BSD3
Maintainer : Alberto Ruiz
Stability : provisional
compatibility with previous version, to be removed
-}
--------------------------------------------------------------------------------
module Numeric.LinearAlgebra.HMatrix (
module Numeric.LinearAlgebra,
(¦),(——),ℝ,ℂ,(<·>)
) where
import Numeric.LinearAlgebra
import Internal.Util
infixr 8 <·>
(<·>) :: Numeric t => Vector t -> Vector t -> t
(<·>) = dot
|