STK++ 0.9.13
|
Implementation of the inversion matrix method for general/square matrices. More...
#include <STK_Invert.h>
Public Types | |
typedef Matrix::Type | Type |
Static Public Member Functions | |
static Type | invertMatrix11 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the 1x1 matrix and store the result in inv. | |
static Type | invertMatrix22 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the 2x2 matrix m and store the result in inv. | |
static Type | invertMatrix33 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the 3x3 matrix m and store the result in inv. | |
static Type | invertMatrix44 (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the 4x4 matrix m and store the result in inv. | |
static Type | invertMatrixXX (Matrix const &m, CArraySquare< Type, Size_ > &inv) |
compute the inverse of the matrix m and store the result in inv. | |
Implementation of the inversion matrix method for general/square matrices.
Definition at line 53 of file STK_Invert.h.
typedef Matrix::Type STK::hidden::InvertMatrixImpl< Matrix, Size_ >::Type |
Definition at line 55 of file STK_Invert.h.