Jpp  master_rocky-37-gf0c5bc59d
the software that should make you happy
Functions
JSVD3D.cc File Reference
#include <string>
#include <iostream>
#include <iomanip>
#include "TRandom3.h"
#include "JMath/JMath.hh"
#include "JMath/JSVD3D.hh"
#include "JMath/JMathTestkit.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 15 of file JSVD3D.cc.

16 {
17  using namespace std;
18  using namespace JPP;
19 
20  double precision;
21  int debug;
22 
23  try {
24 
25  JParser<> zap;
26 
27  zap['e'] = make_field(precision) = 1.0e-3;
28  zap['d'] = make_field(debug) = 3;
29 
30  zap(argc, argv);
31  }
32  catch(const exception &error) {
33  FATAL(error.what() << endl);
34  }
35 
36 
37  gRandom->SetSeed(0);
38 
39 
40  JMatrix3D A = getRandom<JMatrix3D>();
41 
42  JSVD3D svd;
43 
44  svd.decompose(A);
45 
46  DEBUG("A" << endl << A << endl);
47  DEBUG("U" << endl << svd.U << endl);
48  DEBUG("S" << endl << svd.S << endl);
49  DEBUG("V" << endl << svd.V << endl);
50 
51  JMatrix3D C = svd.invert();
52 
53  C *= A;
54 
55  DEBUG("C" << endl << C << endl);
56 
57  ASSERT(C.isIdentity(precision));
58 
59  return 0;
60 }
#define DEBUG(A)
Message macros.
Definition: JMessage.hh:62
#define ASSERT(A,...)
Assert macro.
Definition: JMessage.hh:90
#define FATAL(A)
Definition: JMessage.hh:67
int debug
debug level
Definition: JSirene.cc:69
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:2142
Singular value decomposition.
Definition: JSVD3D.hh:27
const JMatrix3D & invert(const double precision=1.0e-12) const
Get inverted matrix.
Definition: JSVD3D.hh:192
void decompose(const JMatrix3D &A)
Decompose given matrix.
Definition: JSVD3D.hh:52
JMatrix3D S
Definition: JSVD3D.hh:223
JMatrix3D V
Definition: JSVD3D.hh:224
JMatrix3D U
Definition: JSVD3D.hh:222
Utility class to parse command line options.
Definition: JParser.hh:1698
static const double C
Physics constants.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JSTDTypes.hh:14