summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-06-12 14:16:18 +0200
committerAlberto Ruiz <aruiz@um.es>2014-06-12 14:16:18 +0200
commitc4c68eeb17317433bc71113ae7bf57f521081508 (patch)
tree5f08ac63ff0e543051a7f34d744d3ac057dbad7f /packages
parent01832377377142696645a2ea800af2db3d0fac15 (diff)
withCompactSVD, static qr, mTm, unSym
Diffstat (limited to 'packages')
-rw-r--r--packages/Makefile12
-rw-r--r--packages/base/src/Numeric/HMatrix.hs41
2 files changed, 43 insertions, 10 deletions
diff --git a/packages/Makefile b/packages/Makefile
index 9f7a422..e9d8586 100644
--- a/packages/Makefile
+++ b/packages/Makefile
@@ -1,4 +1,4 @@
1pkgs=base gsl special glpk tests ../../hTensor 1pkgs=base gsl special glpk tests ../../hTensor ../../easyVision/packages/base
2 2
3all: 3all:
4 for p in $(pkgs); do \ 4 for p in $(pkgs); do \
@@ -10,3 +10,13 @@ all:
10 cabal install --extra-include-dirs=$(MKL) --extra-lib-dirs=$(MKL) \ 10 cabal install --extra-include-dirs=$(MKL) --extra-lib-dirs=$(MKL) \
11 --force-reinstall --enable-documentation ; cd -; 11 --force-reinstall --enable-documentation ; cd -;
12 12
13fast:
14 for p in $(pkgs); do \
15 if [ -e $$p ]; then \
16 cd $$p; cabal install --force-reinstall ; cd -; \
17 fi; \
18 done
19 cd sparse; \
20 cabal install --extra-include-dirs=$(MKL) --extra-lib-dirs=$(MKL) \
21 --force-reinstall; cd -;
22
diff --git a/packages/base/src/Numeric/HMatrix.hs b/packages/base/src/Numeric/HMatrix.hs
index 1b6c1ea..c88918f 100644
--- a/packages/base/src/Numeric/HMatrix.hs
+++ b/packages/base/src/Numeric/HMatrix.hs
@@ -47,21 +47,22 @@ module Numeric.HMatrix(
47 -- * Linear Systems 47 -- * Linear Systems
48 linSolve, (<\>), 48 linSolve, (<\>),
49 -- * Factorizations 49 -- * Factorizations
50 svd, svdTall, svdFlat, Eigen(..), 50 svd, withCompactSVD, svdTall, svdFlat, Eigen(..),
51 withNullspace, 51 withNullspace, qr,
52 -- * Misc 52 -- * Misc
53 mean, 53 mean,
54 Disp(..), Domain(..), 54 Disp(..), Domain(..),
55 withVector, withMatrix, 55 withVector, withMatrix,
56 toRows, toColumns, 56 toRows, toColumns,
57 Sized(..), Diag(..), Sym, sym 57 Sized(..), Diag(..), Sym, sym, mTm, unSym
58) where 58) where
59 59
60 60
61import GHC.TypeLits 61import GHC.TypeLits
62import Numeric.LinearAlgebra.HMatrix hiding ( 62import Numeric.LinearAlgebra.HMatrix hiding (
63 (<>),(#>),(<·>),Konst(..),diag, disp,(¦),(——),row,col,vector,matrix,linspace,toRows,toColumns, 63 (<>),(#>),(<·>),Konst(..),diag, disp,(¦),(——),row,col,vector,matrix,linspace,toRows,toColumns,
64 (<\>),fromList,takeDiag,svd,eig,eigSH,eigSH',eigenvalues,eigenvaluesSH,eigenvaluesSH',build) 64 (<\>),fromList,takeDiag,svd,eig,eigSH,eigSH',eigenvalues,eigenvaluesSH,eigenvaluesSH',build,
65 qr)
65import qualified Numeric.LinearAlgebra.HMatrix as LA 66import qualified Numeric.LinearAlgebra.HMatrix as LA
66import Data.Proxy(Proxy) 67import Data.Proxy(Proxy)
67import Numeric.LinearAlgebra.Static 68import Numeric.LinearAlgebra.Static
@@ -280,6 +281,12 @@ newtype Sym n = Sym (Sq n) deriving Show
280sym :: KnownNat n => Sq n -> Sym n 281sym :: KnownNat n => Sq n -> Sym n
281sym m = Sym $ (m + tr m)/2 282sym m = Sym $ (m + tr m)/2
282 283
284mTm :: (KnownNat m, KnownNat n) => L m n -> Sym n
285mTm x = Sym (tr x <> x)
286
287unSym :: Sym n -> Sq n
288unSym (Sym x) = x
289
283 290
284𝑖 :: Sized ℂ s c => s 291𝑖 :: Sized ℂ s c => s
285𝑖 = konst iC 292𝑖 = konst iC
@@ -307,7 +314,6 @@ instance KnownNat n => Eigen (Sq n) (C n) (M n n)
307 314
308-------------------------------------------------------------------------------- 315--------------------------------------------------------------------------------
309 316
310
311withNullspace 317withNullspace
312 :: forall m n z . (KnownNat m, KnownNat n) 318 :: forall m n z . (KnownNat m, KnownNat n)
313 => L m n 319 => L m n
@@ -318,6 +324,26 @@ withNullspace (LA.nullspace . extract -> a) f =
318 Nothing -> error "static/dynamic mismatch" 324 Nothing -> error "static/dynamic mismatch"
319 Just (SomeNat (_ :: Proxy k)) -> f (mkL a :: L n k) 325 Just (SomeNat (_ :: Proxy k)) -> f (mkL a :: L n k)
320 326
327
328withCompactSVD
329 :: forall m n z . (KnownNat m, KnownNat n)
330 => L m n
331 -> (forall k . (KnownNat k) => (L m k, R k, L n k) -> z)
332 -> z
333withCompactSVD (LA.compactSVD . extract -> (u,s,v)) f =
334 case someNatVal $ fromIntegral $ size s of
335 Nothing -> error "static/dynamic mismatch"
336 Just (SomeNat (_ :: Proxy k)) -> f (mkL u :: L m k, mkR s :: R k, mkL v :: L n k)
337
338--------------------------------------------------------------------------------
339
340qr :: (KnownNat m, KnownNat n) => L m n -> (L m m, L m n)
341qr (extract -> x) = (mkL q, mkL r)
342 where
343 (q,r) = LA.qr x
344
345-- use qrRaw?
346
321-------------------------------------------------------------------------------- 347--------------------------------------------------------------------------------
322 348
323split :: forall p n . (KnownNat p, KnownNat n, p<=n) => R n -> (R p, R (n-p)) 349split :: forall p n . (KnownNat p, KnownNat n, p<=n) => R n -> (R p, R (n-p))
@@ -518,7 +544,7 @@ test :: (Bool, IO ())
518test = (ok,info) 544test = (ok,info)
519 where 545 where
520 ok = extract (eye :: Sq 5) == ident 5 546 ok = extract (eye :: Sq 5) == ident 5
521 && unwrap (mTm sm :: Sq 3) == tr ((3><3)[1..]) LA.<> (3><3)[1..] 547 && (unwrap .unSym) (mTm sm :: Sym 3) == tr ((3><3)[1..]) LA.<> (3><3)[1..]
522 && unwrap (tm :: L 3 5) == LA.matrix 5 [1..15] 548 && unwrap (tm :: L 3 5) == LA.matrix 5 [1..15]
523 && thingS == thingD 549 && thingS == thingD
524 && precS == precD 550 && precS == precD
@@ -546,9 +572,6 @@ test = (ok,info)
546 572
547 v = 𝕧 2 & 4 & 7 573 v = 𝕧 2 & 4 & 7
548 574
549-- mTm :: L n m -> Sq m
550 mTm a = tr a <> a
551
552 tm :: GL 575 tm :: GL
553 tm = lmat 0 [1..] 576 tm = lmat 0 [1..]
554 577