#include <iostream>#include <string>#include <cmath>#include <ctime>#include <vector>#include <stdlib.h>Go to the source code of this file.
Classes | |
| class | LLSSolver |
| Linear Least Square Solver. More... | |
Defines | |
| #define | real double |
| #define | max(x, y) ((x)>(y)?(x):(y)) |
| #define | min(x, y) ((x)<(y)?(x):(y)) |
Functions | |
| void | dsvd_ (real *G, real *U, real *V, int *M, int *N, real *W, real *WORK, int *LWORK, int *INFO) |
| void | dsol_ (real *U, real *W, real *V, int *M, int *N, real *rhs, real *aa, real *tmp) |
| #define max | ( | x, | |||
| y | ) | ((x)>(y)?(x):(y)) |
define the maximum value of x and y
| #define min | ( | x, | |||
| y | ) | ((x)<(y)?(x):(y)) |
define the minimum value of x and y
| #define real double |
| void dsol_ | ( | real * | U, | |
| real * | W, | |||
| real * | V, | |||
| int * | M, | |||
| int * | N, | |||
| real * | rhs, | |||
| real * | aa, | |||
| real * | tmp | |||
| ) |
| void dsvd_ | ( | real * | G, | |
| real * | U, | |||
| real * | V, | |||
| int * | M, | |||
| int * | N, | |||
| real * | W, | |||
| real * | WORK, | |||
| int * | LWORK, | |||
| int * | INFO | |||
| ) |
1.5.6