summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric/LinearAlgebra/Util.hs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra/Util.hs')
-rw-r--r--packages/base/src/Numeric/LinearAlgebra/Util.hs11
1 files changed, 4 insertions, 7 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Util.hs b/packages/base/src/Numeric/LinearAlgebra/Util.hs
index 324fb44..4824af4 100644
--- a/packages/base/src/Numeric/LinearAlgebra/Util.hs
+++ b/packages/base/src/Numeric/LinearAlgebra/Util.hs
@@ -32,7 +32,7 @@ module Numeric.LinearAlgebra.Util(
32 rand, randn, 32 rand, randn,
33 cross, 33 cross,
34 norm, 34 norm,
35 ℕ,ℤ,ℝ,ℂ,𝑖,i_C, --ℍ 35 ℕ,ℤ,ℝ,ℂ,iC,
36 Normed(..), norm_Frob, norm_nuclear, 36 Normed(..), norm_Frob, norm_nuclear,
37 unitary, 37 unitary,
38 mt, 38 mt,
@@ -72,13 +72,10 @@ type ℝ = Double
72type ℕ = Int 72type ℕ = Int
73type ℤ = Int 73type ℤ = Int
74type ℂ = Complex Double 74type ℂ = Complex Double
75--type ℝn = Vector ℝ
76--type ℂn = Vector ℂ
77--newtype ℍ m = H m
78 75
79i_C, 𝑖 :: 76-- | imaginary unit
80𝑖 = 0:+1 77iC :: ℂ
81i_C = 𝑖 78iC = 0:+1
82 79
83{- | create a real vector 80{- | create a real vector
84 81