summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Algorithms.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2008-01-28 19:31:59 +0000
committerAlberto Ruiz <aruiz@um.es>2008-01-28 19:31:59 +0000
commit240ae9be06380814fc1e223c3c53c746e5b1e6ba (patch)
tree7d69620b120fe8fe5552f6a586422d24921b2f0c /lib/Numeric/LinearAlgebra/Algorithms.hs
parent003b8db7a864bbea3772cd70906153bd36d1f7ac (diff)
added the Testing module (and minor changes in instance definitions)
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Algorithms.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Algorithms.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/Algorithms.hs b/lib/Numeric/LinearAlgebra/Algorithms.hs
index b19c0ec..79cc64d 100644
--- a/lib/Numeric/LinearAlgebra/Algorithms.hs
+++ b/lib/Numeric/LinearAlgebra/Algorithms.hs
@@ -69,7 +69,7 @@ import Data.List(foldl1')
69import Data.Array 69import Data.Array
70 70
71-- | Auxiliary typeclass used to define generic computations for both real and complex matrices. 71-- | Auxiliary typeclass used to define generic computations for both real and complex matrices.
72class (Normed (Matrix t), Linear Matrix t) => Field t where 72class (Normed (Matrix t), Linear Vector t, Linear Matrix t) => Field t where
73 -- | Singular value decomposition using lapack's dgesvd or zgesvd. 73 -- | Singular value decomposition using lapack's dgesvd or zgesvd.
74 svd :: Matrix t -> (Matrix t, Vector Double, Matrix t) 74 svd :: Matrix t -> (Matrix t, Vector Double, Matrix t)
75 luPacked :: Matrix t -> (Matrix t, [Int]) 75 luPacked :: Matrix t -> (Matrix t, [Int])