PARTONS/NumA++
|
Numerical Analysis C++ routines
|
Linear algebra routines such as linear solvers. More...
Public Types | |
enum | Method { ColQR = 0 , FullQR , QR , PartialLU , FullLU } |
Static Public Member Functions | |
static VectorD | solve (const MatrixD &A, const VectorD &Y, Method method=ColQR) |
Solves the linear system \( A X = Y \) and returns \( X \) . More... | |
static unsigned int | rank (const MatrixD &A, Method method=ColQR) |
Computes the rank of the matrix with the given method. More... | |
Linear algebra routines such as linear solvers.
Serves as wrapper for Eigen.
Computes the rank of the matrix with the given method.
A | MatrixD |
method |
|
static |
Solves the linear system \( A X = Y \) and returns \( X \) .
A | Matrix to invert. |
Y | Right hand side. |
method | Solver method. |