Jpp  18.0.0
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JKatoomba_t.cc
Go to the documentation of this file.
2 
3 namespace JACOUSTICS {
4 
6 
7  /**
8  * Declaration of mutex.
9  */
10  std::mutex JKatoomba<JEstimator>::mtx;
11 
12 
13  /**
14  * debug level.
15  */
17 
18 
19  /**
20  * maximal number of iterations.
21  */
23 
24 
25  /**
26  * maximal distance to minimum.
27  */
28  double JKatoomba<JGandalf>::EPSILON = 1.0e-3;
29 
30 
31  /**
32  * minimal value control parameter
33  */
34  double JKatoomba<JGandalf>::LAMBDA_MIN = 0.01;
35 
36 
37  /**
38  * maximal value control parameter
39  */
40  double JKatoomba<JGandalf>::LAMBDA_MAX = 100.0;
41 
42 
43  /**
44  * multiplication factor control parameter
45  */
46  double JKatoomba<JGandalf>::LAMBDA_UP = 9.0;
47 
48 
49  /**
50  * multiplication factor control parameter
51  */
53 
54 
55  /**
56  * minimal value diagonal element of matrix
57  */
58  double JKatoomba<JGandalf>::PIVOT = 1.0e-3;
59 }
JMatrix_t
Algorithm for matrix inversion.
Definition: JKatoomba_t.hh:334
Fit functions of acoustic model.
Template definition of fit function of acoustic model.
Definition: JKatoomba_t.hh:75