Definition in file svd.h.
#include <math.h>
#include "tnt/tnt.h"
#include "tnt/cmat.h"
#include "tnt/vec.h"
Include dependency graph for svd.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Classes | |
| class | SVD |
| The SVD class performs singular value decomposition on TNT matricies. More... | |
Defines | |
| #define | FMAX(a, b) (maxarg1=(a),maxarg2=(b),(maxarg1) > (maxarg2) ? (maxarg1) : (maxarg2)) |
| #define | IMIN(a, b) (iminarg1=(a),iminarg2=(b),(iminarg1) < (iminarg2) ? (iminarg1) : (iminarg2)) |
| #define | SIGN(a, b) ((b) >= 0.0 ? fabs(a) : -fabs(a)) |
| #define | SQR(a) ((sqrarg=(a)) == 0.0 ? 0.0 : sqrarg*sqrarg) |
| #define | CONVERGE_LIMIT 30 |
Variables | |
| double | maxarg1 |
| double | maxarg2 |
| int | iminarg1 |
| int | iminarg2 |
| double | sqrarg |
|
|
|
|
|
Definition at line 19 of file svd.h. Referenced by SVD::compute(). |
|
|
Definition at line 22 of file svd.h. Referenced by SVD::compute(). |
|
|
Definition at line 24 of file svd.h. Referenced by SVD::compute(). |
|
|
Definition at line 27 of file svd.h. Referenced by SVD::pythag(). |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.3.4