Go to the source code of this file.
|
ON_DECL bool | ON_GetMatrixSVD (int row_count, int col_count, double const *const *A, double **&U, double *&W, double **&V) |
|
ON_DECL int | ON_InvertSVDW (int count, const double *W, double *&invW) |
|
ON_DECL int | ON_RowReduce (int row_count, int col_count, double zero_pivot, double **A, double **B, double pivots[2]) |
|
ON_DECL bool | ON_SolveSVD (int row_count, int col_count, double const *const *U, const double *invW, double const *const *V, const double *B, double *&X) |
|
◆ ON_GetMatrixSVD()
ON_DECL bool ON_GetMatrixSVD |
( |
int | row_count, |
|
|
int | col_count, |
|
|
double const *const * | A, |
|
|
double **& | U, |
|
|
double *& | W, |
|
|
double **& | V ) |
◆ ON_InvertSVDW()
ON_DECL int ON_InvertSVDW |
( |
int | count, |
|
|
const double * | W, |
|
|
double *& | invW ) |
◆ ON_RowReduce()
ON_DECL int ON_RowReduce |
( |
int | row_count, |
|
|
int | col_count, |
|
|
double | zero_pivot, |
|
|
double ** | A, |
|
|
double ** | B, |
|
|
double | pivots[2] ) |
◆ ON_SolveSVD()