|
| int | LU_Decompose (math_Matrix &a, math_IntegerVector &indx, double &d, double TINY=1.0e-20, const Message_ProgressRange &theProgress=Message_ProgressRange()) |
| |
| int | LU_Decompose (math_Matrix &a, math_IntegerVector &indx, double &d, math_Vector &vv, double TINY=1.0e-30, const Message_ProgressRange &theProgress=Message_ProgressRange()) |
| |
| void | LU_Solve (const math_Matrix &a, const math_IntegerVector &indx, math_Vector &b) |
| |
| int | LU_Invert (math_Matrix &a) |
| |
| int | SVD_Decompose (math_Matrix &a, math_Vector &w, math_Matrix &v) |
| |
| int | SVD_Decompose (math_Matrix &a, math_Vector &w, math_Matrix &v, math_Vector &rv1) |
| |
| void | SVD_Solve (const math_Matrix &u, const math_Vector &w, const math_Matrix &v, const math_Vector &b, math_Vector &x) |
| |
| int | DACTCL_Decompose (math_Vector &a, const math_IntegerVector &indx, const double MinPivot=1.e-20) |
| |
| int | DACTCL_Solve (const math_Vector &a, math_Vector &b, const math_IntegerVector &indx, const double MinPivot=1.e-20) |
| |
| int | Jacobi (math_Matrix &a, math_Vector &d, math_Matrix &v, int &nrot) |
| |