summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-10-06 10:13:12 +0000
committerAlberto Ruiz <aruiz@um.es>2007-10-06 10:13:12 +0000
commit9d2073dd2cf7873006b0e831754928f7c0be52b7 (patch)
tree04e31e1359f599e07e962f2606d87b6fd1250aa5
parent3017c66ca1a77b55032f75acd529347648dfc59b (diff)
minor doc changes
-rw-r--r--examples/Static.hs23
-rw-r--r--lib/Numeric/LinearAlgebra/Algorithms.hs31
2 files changed, 34 insertions, 20 deletions
diff --git a/examples/Static.hs b/examples/Static.hs
index c4856f5..c0cfcce 100644
--- a/examples/Static.hs
+++ b/examples/Static.hs
@@ -6,11 +6,23 @@ import Language.Haskell.TH
6import Numeric.LinearAlgebra 6import Numeric.LinearAlgebra
7import Foreign 7import Foreign
8import Language.Haskell.TH.Syntax 8import Language.Haskell.TH.Syntax
9import Data.Packed.Internal(Vector(..),Matrix(..))
9 10
10instance Lift Double where 11instance Lift Double where
11 lift x = return (LitE (RationalL (toRational x))) 12 lift x = return (LitE (RationalL (toRational x)))
12 13
13--instance (Lift a, Storable a) => Lift (Vector a ) where 14instance Lift (Ptr Double) where
15 lift p = [e| p |]
16
17instance Lift (ForeignPtr Double) where
18 lift p = [e| p |]
19
20instance (Lift a, Storable a, Lift (Ptr a), Lift (ForeignPtr a)) => Lift (Vector a ) where
21 lift (V n fp p) = [e| V $(lift n) $(lift fp) $(lift p) |]
22
23instance (Lift (Vector a)) => Lift (Matrix a) where
24 lift (MC r c v vt) = [e| MC $(lift r) $(lift c) $(lift v) $(lift vt) |]
25 lift (MF r c v vt) = [e| MF $(lift r) $(lift c) $(lift v) $(lift vt) |]
14 26
15tdim :: Int -> ExpQ 27tdim :: Int -> ExpQ
16tdim 0 = [| Z |] 28tdim 0 = [| Z |]
@@ -46,6 +58,9 @@ vec' :: [Double] -> ExpQ
46vec' d = [| createl ($(tdim (length d))) d |] 58vec' d = [| createl ($(tdim (length d))) d |]
47 59
48 60
61createm :: (Dim r, Dim c) => r -> c -> (Matrix Double) -> SMat r c Double
62createm _ _ m = SMat m
63
49createml :: (Dim r, Dim c) => r -> c -> Int -> Int -> [Double] -> SMat r c Double 64createml :: (Dim r, Dim c) => r -> c -> Int -> Int -> [Double] -> SMat r c Double
50createml _ _ r c l = SMat ((r><c) l) 65createml _ _ r c l = SMat ((r><c) l)
51 66
@@ -53,7 +68,11 @@ mat :: Int -> Int -> [Double] -> ExpQ
53mat r c l = [| createml ($(tdim r)) ($(tdim c)) r c l |] 68mat r c l = [| createml ($(tdim r)) ($(tdim c)) r c l |]
54 69
55vec :: [Double] -> ExpQ 70vec :: [Double] -> ExpQ
56vec d = [|mat (length d) 1 d|] 71vec d = mat (length d) 1 d
72
73
74mat' :: Matrix Double -> ExpQ
75mat' m = [| createm ($(tdim (rows m))) ($(tdim (cols m))) m |]
57 76
58covec :: [Double] -> ExpQ 77covec :: [Double] -> ExpQ
59covec d = mat 1 (length d) d 78covec d = mat 1 (length d) d
diff --git a/lib/Numeric/LinearAlgebra/Algorithms.hs b/lib/Numeric/LinearAlgebra/Algorithms.hs
index 3757f33..425532d 100644
--- a/lib/Numeric/LinearAlgebra/Algorithms.hs
+++ b/lib/Numeric/LinearAlgebra/Algorithms.hs
@@ -64,15 +64,15 @@ class (Linear Matrix t) => GenMat t where
64 -- See also other versions of linearSolve in "Numeric.LinearAlgebra.LAPACK". 64 -- See also other versions of linearSolve in "Numeric.LinearAlgebra.LAPACK".
65 linearSolve :: Matrix t -> Matrix t -> Matrix t 65 linearSolve :: Matrix t -> Matrix t -> Matrix t
66 linearSolveSVD :: Matrix t -> Matrix t -> Matrix t 66 linearSolveSVD :: Matrix t -> Matrix t -> Matrix t
67 -- | eigensystem of general square matrix using lapack's dgeev or zgeev. If @(s,v) = eig m@ then @m <> v =~= v <> diag s@ 67 -- | Eigenvalues and eigenvectors of a general square matrix using lapack's dgeev or zgeev. If @(s,v) = eig m@ then @m \<> v == v \<> diag s@
68 eig :: Matrix t -> (Vector (Complex Double), Matrix (Complex Double)) 68 eig :: Matrix t -> (Vector (Complex Double), Matrix (Complex Double))
69 -- | similar to eigSH without checking that the input matrix is hermitian or symmetric. 69 -- | Similar to eigSH without checking that the input matrix is hermitian or symmetric.
70 eigSH' :: Matrix t -> (Vector Double, Matrix t) 70 eigSH' :: Matrix t -> (Vector Double, Matrix t)
71 -- | similar to chol without checking that the input matrix is hermitian or symmetric. 71 -- | Similar to chol without checking that the input matrix is hermitian or symmetric.
72 cholSH :: Matrix t -> Matrix t 72 cholSH :: Matrix t -> Matrix t
73 -- | QR factorization using lapack's dgeqr2 or zgeqr2. 73 -- | QR factorization using lapack's dgeqr2 or zgeqr2.
74 qr :: Matrix t -> (Matrix t, Matrix t) 74 qr :: Matrix t -> (Matrix t, Matrix t)
75 -- | conjugate transpose. 75 -- | Conjugate transpose.
76 ctrans :: Matrix t -> Matrix t 76 ctrans :: Matrix t -> Matrix t
77 77
78instance GenMat Double where 78instance GenMat Double where
@@ -97,7 +97,7 @@ instance GenMat (Complex Double) where
97 cholSH = cholH 97 cholSH = cholH
98 qr = unpackQR . qrC 98 qr = unpackQR . qrC
99 99
100-- | eigensystem of complex hermitian or real symmetric matrix using lapack's dsyev or zheev. If @(s,v) = eigSH m@ then @m =~= v <> diag s <> ctrans v@ 100-- | Eigenvalues and Eigenvectors of a complex hermitian or real symmetric matrix using lapack's dsyev or zheev. If @(s,v) = eigSH m@ then @m == v \<> diag s \<> ctrans v@
101eigSH :: GenMat t => Matrix t -> (Vector Double, Matrix t) 101eigSH :: GenMat t => Matrix t -> (Vector Double, Matrix t)
102eigSH m | m `equal` ctrans m = eigSH' m 102eigSH m | m `equal` ctrans m = eigSH' m
103 | otherwise = error "eigSH requires complex hermitian or real symmetric matrix" 103 | otherwise = error "eigSH requires complex hermitian or real symmetric matrix"
@@ -123,7 +123,7 @@ inv m | square m = m `linearSolve` ident (rows m)
123pinv :: GenMat t => Matrix t -> Matrix t 123pinv :: GenMat t => Matrix t -> Matrix t
124pinv m = linearSolveSVD m (ident (rows m)) 124pinv m = linearSolveSVD m (ident (rows m))
125 125
126-- | A version of 'svd' which returns an appropriate diagonal matrix with the singular values: if @(u,d,v) = full svd m@ then @m =~= u \<> d \<> trans v@. 126-- | A version of 'svd' which returns an appropriate diagonal matrix with the singular values: if @(u,d,v) = full svd m@ then @m == u \<> d \<> trans v@.
127full :: Field t 127full :: Field t
128 => (Matrix t -> (Matrix t, Vector Double, Matrix t)) -> Matrix t -> (Matrix t, Matrix Double, Matrix t) 128 => (Matrix t -> (Matrix t, Vector Double, Matrix t)) -> Matrix t -> (Matrix t, Matrix Double, Matrix t)
129full svd m = (u, d ,v) where 129full svd m = (u, d ,v) where
@@ -132,7 +132,7 @@ full svd m = (u, d ,v) where
132 r = rows m 132 r = rows m
133 c = cols m 133 c = cols m
134 134
135-- | A version of 'svd' which returns only the nonzero singular values and the corresponding rows and columns of the rotations: if @(u,s,v) = economy svd m@ then @m =~= u \<> diag s \<> trans v@. 135-- | A version of 'svd' which returns only the nonzero singular values and the corresponding rows and columns of the rotations: if @(u,s,v) = economy svd m@ then @m == u \<> diag s \<> trans v@.
136economy :: Field t 136economy :: Field t
137 => (Matrix t -> (Matrix t, Vector Double, Matrix t)) -> Matrix t -> (Matrix t, Vector Double, Matrix t) 137 => (Matrix t -> (Matrix t, Vector Double, Matrix t)) -> Matrix t -> (Matrix t, Vector Double, Matrix t)
138economy svd m = (u', subVector 0 d s, v') where 138economy svd m = (u', subVector 0 d s, v') where
@@ -149,24 +149,24 @@ economy svd m = (u', subVector 0 d s, v') where
149 v' = takeColumns d v 149 v' = takeColumns d v
150 150
151 151
152-- | The machine precision of a Double: @eps == 2.22044604925031e-16@ (the value used by GNU-Octave). 152-- | The machine precision of a Double: @eps = 2.22044604925031e-16@ (the value used by GNU-Octave).
153eps :: Double 153eps :: Double
154eps = 2.22044604925031e-16 154eps = 2.22044604925031e-16
155 155
156-- | The imaginary unit: @i == 0.0 :+ 1.0@ 156-- | The imaginary unit: @i = 0.0 :+ 1.0@
157i :: Complex Double 157i :: Complex Double
158i = 0:+1 158i = 0:+1
159 159
160 160
161-- | matrix product 161-- matrix product
162mXm :: (Num t, GenMat t) => Matrix t -> Matrix t -> Matrix t 162mXm :: (Num t, GenMat t) => Matrix t -> Matrix t -> Matrix t
163mXm = multiply 163mXm = multiply
164 164
165-- | matrix - vector product 165-- matrix - vector product
166mXv :: (Num t, GenMat t) => Matrix t -> Vector t -> Vector t 166mXv :: (Num t, GenMat t) => Matrix t -> Vector t -> Vector t
167mXv m v = flatten $ m `mXm` (asColumn v) 167mXv m v = flatten $ m `mXm` (asColumn v)
168 168
169-- | vector - matrix product 169-- vector - matrix product
170vXm :: (Num t, GenMat t) => Vector t -> Matrix t -> Vector t 170vXm :: (Num t, GenMat t) => Vector t -> Matrix t -> Vector t
171vXm v m = flatten $ (asRow v) `mXm` m 171vXm v m = flatten $ (asRow v) `mXm` m
172 172
@@ -201,10 +201,6 @@ pnormCM PNorm1 m = vectorMax $ constant 1 (rows m) `vXm` liftMatrix (liftVector
201pnormCM Infinity m = vectorMax $ liftMatrix (liftVector magnitude) m `mXv` constant 1 (cols m) 201pnormCM Infinity m = vectorMax $ liftMatrix (liftVector magnitude) m `mXv` constant 1 (cols m)
202--pnormCM _ _ = error "p norm not yet defined" 202--pnormCM _ _ = error "p norm not yet defined"
203 203
204-- -- | computes the p-norm of a matrix or vector (with the same definitions as GNU-octave). pnorm 0 denotes \\inf-norm. See also 'norm'.
205--pnorm :: (Container t, GenMat a) => Int -> t a -> Double
206--pnorm = pnormG
207
208class Normed t where 204class Normed t where
209 pnorm :: NormType -> t -> Double 205 pnorm :: NormType -> t -> Double
210 norm :: t -> Double 206 norm :: t -> Double
@@ -226,7 +222,7 @@ instance Normed (Matrix (Complex Double)) where
226 222
227-- | The nullspace of a matrix from its SVD decomposition. 223-- | The nullspace of a matrix from its SVD decomposition.
228nullspacePrec :: GenMat t 224nullspacePrec :: GenMat t
229 => Double -- ^ relative tolerance in 'eps' units 225 => Double -- ^ relative tolerance in 'eps' units
230 -> Matrix t -- ^ input matrix 226 -> Matrix t -- ^ input matrix
231 -> [Vector t] -- ^ list of unitary vectors spanning the nullspace 227 -> [Vector t] -- ^ list of unitary vectors spanning the nullspace
232nullspacePrec t m = ns where 228nullspacePrec t m = ns where
@@ -234,7 +230,6 @@ nullspacePrec t m = ns where
234 sl@(g:_) = toList s 230 sl@(g:_) = toList s
235 tol = (fromIntegral (max (rows m) (cols m)) * g * t * eps) 231 tol = (fromIntegral (max (rows m) (cols m)) * g * t * eps)
236 rank = length (filter (> g*tol) sl) 232 rank = length (filter (> g*tol) sl)
237-- ns = drop rank (toColumns v)
238 ns = drop rank $ toRows $ ctrans v 233 ns = drop rank $ toRows $ ctrans v
239 234
240-- | The nullspace of a matrix, assumed to be one-dimensional, with default tolerance (shortcut for @last . nullspacePrec 1@). 235-- | The nullspace of a matrix, assumed to be one-dimensional, with default tolerance (shortcut for @last . nullspacePrec 1@).