Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TDecompSVD.h
Go to the documentation of this file.
1// @(#)root/matrix:$Id$
2// Authors: Fons Rademakers, Eddy Offermann Dec 2003
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TDecompSVD
13#define ROOT_TDecompSVD
14
15///////////////////////////////////////////////////////////////////////////
16// //
17// Single Value Decomposition class //
18// //
19///////////////////////////////////////////////////////////////////////////
20
21#include "TDecompBase.h"
22
23class TDecompSVD : public TDecompBase
24{
25protected :
26
27 // A = fU fSig fV^T
28 TMatrixD fU; // orthogonal matrix
29 TMatrixD fV; // orthogonal matrix
30 TVectorD fSig; // diagonal of diagonal matrix
31
32 static Bool_t Bidiagonalize(TMatrixD &v,TMatrixD &u,TVectorD &sDiag,TVectorD &oDiag);
33 static Bool_t Diagonalize (TMatrixD &v,TMatrixD &u,TVectorD &sDiag,TVectorD &oDiag);
34 static void Diag_1 (TMatrixD &v,TVectorD &sDiag,TVectorD &oDiag,Int_t k);
35 static void Diag_2 (TVectorD &sDiag,TVectorD &oDiag,Int_t k,Int_t l);
36 static void Diag_3 (TMatrixD &v,TMatrixD &u,TVectorD &sDiag,TVectorD &oDiag,Int_t k,Int_t l);
37 static void SortSingular (TMatrixD &v,TMatrixD &u,TVectorD &sDiag);
38
39 const TMatrixDBase &GetDecompMatrix() const override { return fU; }
40
41public :
42
43 enum {kWorkMax = 100}; // size of work array
44
45 TDecompSVD(): fU(), fV(), fSig() {}
46 TDecompSVD(Int_t nrows,Int_t ncols);
47 TDecompSVD(Int_t row_lwb,Int_t row_upb,Int_t col_lwb,Int_t col_upb);
48 TDecompSVD(const TMatrixD &m,Double_t tol = 0.0);
49 TDecompSVD(const TDecompSVD &another);
50 ~TDecompSVD() override {}
51
52 const TMatrixD GetMatrix ();
53 Int_t GetNrows () const override;
54 Int_t GetNcols () const override;
55 const TMatrixD &GetU () { if ( !TestBit(kDecomposed) ) Decompose();
56 return fU; }
57 const TMatrixD &GetV () { if ( !TestBit(kDecomposed) ) Decompose();
58 return fV; }
60 return fSig; }
61
62 virtual void SetMatrix (const TMatrixD &a);
63
64 Bool_t Decompose () override;
65 Bool_t Solve ( TVectorD &b) override;
66 TVectorD Solve (const TVectorD& b,Bool_t &ok) override { TVectorD x = b; ok = Solve(x);
67 const Int_t rowLwb = GetRowLwb();
68 x.ResizeTo(rowLwb,rowLwb+GetNcols()-1);
69 return x; }
70 Bool_t Solve ( TMatrixDColumn &b) override;
71 Bool_t TransSolve ( TVectorD &b) override;
72 TVectorD TransSolve (const TVectorD& b,Bool_t &ok) override { TVectorD x = b; ok = TransSolve(x);
73 const Int_t rowLwb = GetRowLwb();
74 x.ResizeTo(rowLwb,rowLwb+GetNcols()-1);
75 return x; }
76 Bool_t TransSolve ( TMatrixDColumn &b) override;
77 Double_t Condition () override;
78 void Det (Double_t &d1,Double_t &d2) override;
79
81 TMatrixD Invert (Bool_t &status);
82 TMatrixD Invert () {Bool_t status; return Invert(status); }
83
84 void Print(Option_t *opt ="") const override; // *MENU*
85
86 TDecompSVD &operator= (const TDecompSVD &source);
87
88 ClassDefOverride(TDecompSVD,1) // Matrix Decompositition SVD
89};
90
91#endif
#define b(i)
Definition RSha256.hxx:100
#define a(i)
Definition RSha256.hxx:99
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
double Double_t
Definition RtypesCore.h:59
const char Option_t
Definition RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Decomposition Base class.
Definition TDecompBase.h:34
Int_t GetRowLwb() const
Definition TDecompBase.h:73
Single Value Decomposition class.
Definition TDecompSVD.h:24
void Det(Double_t &d1, Double_t &d2) override
Matrix determinant det = d1*TMath::Power(2.,d2)
TVectorD fSig
Definition TDecompSVD.h:30
const TMatrixDBase & GetDecompMatrix() const override
Definition TDecompSVD.h:39
~TDecompSVD() override
Definition TDecompSVD.h:50
static void Diag_3(TMatrixD &v, TMatrixD &u, TVectorD &sDiag, TVectorD &oDiag, Int_t k, Int_t l)
Step 3 in the matrix diagonalization.
static void Diag_2(TVectorD &sDiag, TVectorD &oDiag, Int_t k, Int_t l)
Step 2 in the matrix diagonalization.
TDecompSVD & operator=(const TDecompSVD &source)
Assignment operator.
Bool_t Solve(TVectorD &b) override
Solve Ax=b assuming the SVD form of A is stored .
TMatrixD Invert()
Definition TDecompSVD.h:82
TMatrixD fV
Definition TDecompSVD.h:29
static Bool_t Bidiagonalize(TMatrixD &v, TMatrixD &u, TVectorD &sDiag, TVectorD &oDiag)
Bidiagonalize the (m x n) - matrix a (stored in v) through a series of Householder transformations ap...
static void Diag_1(TMatrixD &v, TVectorD &sDiag, TVectorD &oDiag, Int_t k)
Step 1 in the matrix diagonalization.
TMatrixD fU
Definition TDecompSVD.h:28
const TVectorD & GetSig()
Definition TDecompSVD.h:59
static Bool_t Diagonalize(TMatrixD &v, TMatrixD &u, TVectorD &sDiag, TVectorD &oDiag)
Diagonalizes in an iterative fashion the bidiagonal matrix C as described through sDiag and oDiag,...
Double_t Condition() override
Matrix condition number.
const TMatrixD & GetV()
Definition TDecompSVD.h:57
Bool_t Decompose() override
SVD decomposition of matrix If the decomposition succeeds, bit kDecomposed is set ,...
Int_t GetNrows() const override
const TMatrixD GetMatrix()
Reconstruct the original matrix using the decomposition parts.
Bool_t TransSolve(TVectorD &b) override
Solve A^T x=b assuming the SVD form of A is stored . Solution returned in b.
TVectorD Solve(const TVectorD &b, Bool_t &ok) override
Definition TDecompSVD.h:66
virtual void SetMatrix(const TMatrixD &a)
Set matrix to be decomposed.
const TMatrixD & GetU()
Definition TDecompSVD.h:55
Int_t GetNcols() const override
static void SortSingular(TMatrixD &v, TMatrixD &u, TVectorD &sDiag)
Perform a permutation transformation on the diagonal matrix S', so that matrix S'' = U''^T .
void Print(Option_t *opt="") const override
Print class members.
TVectorD TransSolve(const TVectorD &b, Bool_t &ok) override
Definition TDecompSVD.h:72
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition TObject.h:201
Double_t x[n]
Definition legend1.C:17
void inv(rsa_NUMBER *, rsa_NUMBER *, rsa_NUMBER *)
Definition rsaaux.cxx:949
TMarker m
Definition textangle.C:8
TLine l
Definition textangle.C:4