summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-06-08 23:07:45 +0000
committerAlberto Ruiz <aruiz@um.es>2007-06-08 23:07:45 +0000
commite21f42f742959ec9452add9b6c6e08d30d9584ed (patch)
tree25b0fe2e085a021b3d05305c759aa15ab1b17bff /lib
parent8050c64f706c027e0446b892ca64814a174013a4 (diff)
diagRect, svdC
Diffstat (limited to 'lib')
-rw-r--r--lib/Data/Packed/Internal/Matrix.hs7
-rw-r--r--lib/LAPACK.hs2
-rw-r--r--lib/LAPACK/Internal.hs21
3 files changed, 23 insertions, 7 deletions
diff --git a/lib/Data/Packed/Internal/Matrix.hs b/lib/Data/Packed/Internal/Matrix.hs
index bd333d4..4383e79 100644
--- a/lib/Data/Packed/Internal/Matrix.hs
+++ b/lib/Data/Packed/Internal/Matrix.hs
@@ -315,3 +315,10 @@ diagG v = reshape c $ fromList $ [ l!!(i-1) * delta k i | k <- [1..c], i <- [1..
315 l = toList v 315 l = toList v
316 delta i j | i==j = 1 316 delta i j | i==j = 1
317 | otherwise = 0 317 | otherwise = 0
318
319diagRect s r c
320 | dim s < min r c = error "diagRect"
321 | r == c = diag s
322 | r < c = joinHoriz [diag s , zeros (r,c-r)]
323 | otherwise = joinVert [diag s , zeros (r-c,c)]
324 where zeros (r,c) = reshape c $ constant (r*c) 0
diff --git a/lib/LAPACK.hs b/lib/LAPACK.hs
index 67e49af..088b6d7 100644
--- a/lib/LAPACK.hs
+++ b/lib/LAPACK.hs
@@ -14,7 +14,7 @@
14 14
15module LAPACK ( 15module LAPACK (
16 --module LAPACK.Internal 16 --module LAPACK.Internal
17 svdR, svdR', 17 svdR, svdR', svdC, svdC',
18 eigC, 18 eigC,
19 linearSolveLSR 19 linearSolveLSR
20) where 20) where
diff --git a/lib/LAPACK/Internal.hs b/lib/LAPACK/Internal.hs
index 2569215..e39dd10 100644
--- a/lib/LAPACK/Internal.hs
+++ b/lib/LAPACK/Internal.hs
@@ -31,12 +31,7 @@ foreign import ccall "lapack-aux.h svd_l_R"
31-- 31--
32-- @(u,s,v)=svdR m@ so that @m=u \<\> s \<\> 'trans' v@. 32-- @(u,s,v)=svdR m@ so that @m=u \<\> s \<\> 'trans' v@.
33svdR :: Matrix Double -> (Matrix Double, Matrix Double , Matrix Double) 33svdR :: Matrix Double -> (Matrix Double, Matrix Double , Matrix Double)
34svdR x@M {rows = r, cols = c} = (u, s, v) 34svdR x@M {rows = r, cols = c} = (u, diagRect s r c, v) where (u,s,v) = svdR' x
35 where (u,s',v) = svdR' x
36 s | r == c = diag s'
37 | r < c = joinHoriz [diag s' , zeros (r,c-r)]
38 | otherwise = joinVert [diag s' , zeros (r-c,c)]
39 zeros (r,c) = reshape c $ constant (r*c) 0
40 35
41svdR' x@M {rows = r, cols = c} = unsafePerformIO $ do 36svdR' x@M {rows = r, cols = c} = unsafePerformIO $ do
42 u <- createMatrix ColumnMajor r r 37 u <- createMatrix ColumnMajor r r
@@ -55,6 +50,20 @@ foreign import ccall "lapack-aux.h svd_l_Rdd"
55foreign import ccall "lapack-aux.h svd_l_C" 50foreign import ccall "lapack-aux.h svd_l_C"
56 zgesvd :: (Complex Double) ::> (Complex Double) ::> (Double :> (Complex Double) ::> IO Int) 51 zgesvd :: (Complex Double) ::> (Complex Double) ::> (Double :> (Complex Double) ::> IO Int)
57 52
53-- | Wrapper for LAPACK's /zgesvd/, which computes the full svd decomposition of a complex matrix.
54--
55-- @(u,s,v)=svdC m@ so that @m=u \<\> s \<\> 'trans' v@.
56svdC :: Matrix (Complex Double)
57 -> (Matrix (Complex Double), Matrix Double, Matrix (Complex Double))
58svdC x@M {rows = r, cols = c} = (u, diagRect s r c, v) where (u,s,v) = svdC' x
59
60svdC' x@M {rows = r, cols = c} = unsafePerformIO $ do
61 u <- createMatrix ColumnMajor r r
62 s <- createVector (min r c)
63 v <- createMatrix ColumnMajor c c
64 zgesvd // mat fdat x // mat dat u // vec s // mat dat v // check "svdC" [fdat x]
65 return (u,s,trans v)
66
58----------------------------------------------------------------------------- 67-----------------------------------------------------------------------------
59-- zgeev 68-- zgeev
60foreign import ccall "lapack-aux.h eig_l_C" 69foreign import ccall "lapack-aux.h eig_l_C"