Jpp 19.3.0-rc.2
the software that should make you happy
Loading...
Searching...
No Matches
JKatoomba_t.cc
Go to the documentation of this file.
2
3namespace JACOUSTICS {
4
5 /**
6 * Declaration of mutex.
7 */
8 std::mutex TMatrixDS::mtx;
9
10
11 /**
12 * Matrix inversion.
13 */
15
16
17 /**
18 * debug level.
19 */
21
22
23 /**
24 * maximal number of iterations.
25 */
27
28
29 /**
30 * maximal distance to minimum.
31 */
32 double JKatoomba<JGandalf>::EPSILON = 1.0e-3;
33
34
35 /**
36 * minimal value control parameter
37 */
39
40
41 /**
42 * maximal value control parameter
43 */
45
46
47 /**
48 * multiplication factor control parameter
49 */
51
52
53 /**
54 * multiplication factor control parameter
55 */
57
58
59 /**
60 * minimal value diagonal element of matrix
61 */
62 double JKatoomba<JGandalf>::PIVOT = std::numeric_limits<double>::epsilon();
63}
Fit functions of acoustic model.
Auxiliary classes and methods for acoustic position calibration.
JMatrix_t
Algorithm for matrix inversion.
Template definition of fit function of acoustic model.
static std::mutex mtx
TDecompSVD.