STK++ 0.9.13
|
Implementation of the computation of the inverse of a lower symmetric matrix. More...
#include <STK_InvertLowerSym.h>
Public Types | |
typedef Matrix::Type | Type |
Static Public Member Functions | |
static Type | invertLowerSymMatrix11 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the lower symmetric matrix m of size 1x1 and store the result in inv. | |
static Type | invertLowerSymMatrix22 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the lower symmetric 2x2 matrix m using only its lower part and store the result in inv. | |
static Type | invertLowerSymMatrix33 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the symmetric 3x3 matrix m using only its lower part and store the result in inv. | |
static Type | invertLowerSymMatrix44 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the symmetric 4x4 matrix m using only its lower part and store the result in inv. | |
static Type | invertLowerSymMatrixXX (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the lower symmetric 4x4 matrix m using only its lower part and store the result in inv. | |
Implementation of the computation of the inverse of a lower symmetric matrix.
Definition at line 53 of file STK_InvertLowerSym.h.
typedef Matrix::Type STK::hidden::InvertLowerSymMatrixImpl< Matrix, Size_ >::Type |
Definition at line 55 of file STK_InvertLowerSym.h.