|
| template<int m, int n> |
| static void | Ax (const FieldMatrix< ctype, m, n > &A, const FieldVector< ctype, n > &x, FieldVector< ctype, m > &ret) |
| |
| template<int m, int n> |
| static void | ATx (const FieldMatrix< ctype, m, n > &A, const FieldVector< ctype, m > &x, FieldVector< ctype, n > &ret) |
| |
| template<int m, int n, int p> |
| static void | AB (const FieldMatrix< ctype, m, n > &A, const FieldMatrix< ctype, n, p > &B, FieldMatrix< ctype, m, p > &ret) |
| |
| template<int m, int n, int p> |
| static void | ATBT (const FieldMatrix< ctype, m, n > &A, const FieldMatrix< ctype, p, m > &B, FieldMatrix< ctype, n, p > &ret) |
| |
| template<int m, int n> |
| static void | ATA_L (const FieldMatrix< ctype, m, n > &A, FieldMatrix< ctype, n, n > &ret) |
| |
| template<int m, int n> |
| static void | ATA (const FieldMatrix< ctype, m, n > &A, FieldMatrix< ctype, n, n > &ret) |
| |
| template<int m, int n> |
| static void | AAT_L (const FieldMatrix< ctype, m, n > &A, FieldMatrix< ctype, m, m > &ret) |
| |
| template<int m, int n> |
| static void | AAT (const FieldMatrix< ctype, m, n > &A, FieldMatrix< ctype, m, m > &ret) |
| |
| template<int n> |
| static void | Lx (const FieldMatrix< ctype, n, n > &L, const FieldVector< ctype, n > &x, FieldVector< ctype, n > &ret) |
| |
| template<int n> |
| static void | LTx (const FieldMatrix< ctype, n, n > &L, const FieldVector< ctype, n > &x, FieldVector< ctype, n > &ret) |
| |
| template<int n> |
| static void | LTL (const FieldMatrix< ctype, n, n > &L, FieldMatrix< ctype, n, n > &ret) |
| |
| template<int n> |
| static void | LLT (const FieldMatrix< ctype, n, n > &L, FieldMatrix< ctype, n, n > &ret) |
| |
| template<int n> |
| static void | cholesky_L (const FieldMatrix< ctype, n, n > &A, FieldMatrix< ctype, n, n > &ret) |
| |
| template<int n> |
| static ctype | detL (const FieldMatrix< ctype, n, n > &L) |
| |
| template<int n> |
| static ctype | invL (FieldMatrix< ctype, n, n > &L) |
| |
| template<int n> |
| static void | invLx (FieldMatrix< ctype, n, n > &L, FieldVector< ctype, n > &x) |
| |
| template<int n> |
| static void | invLTx (FieldMatrix< ctype, n, n > &L, FieldVector< ctype, n > &x) |
| |
| template<int n> |
| static ctype | spdDetA (const FieldMatrix< ctype, n, n > &A) |
| |
| template<int n> |
| static ctype | spdInvA (FieldMatrix< ctype, n, n > &A) |
| |
| template<int n> |
| static void | spdInvAx (FieldMatrix< ctype, n, n > &A, FieldVector< ctype, n > &x) |
| |
| template<int m, int n> |
| static ctype | detATA (const FieldMatrix< ctype, m, n > &A) |
| |
| template<int m, int n> |
| static ctype | sqrtDetAAT (const FieldMatrix< ctype, m, n > &A) |
| | Compute the square root of the determinant of A times A transposed. More...
|
| |
| template<int m, int n> |
| static ctype | leftInvA (const FieldMatrix< ctype, m, n > &A, FieldMatrix< ctype, n, m > &ret) |
| |
| template<int m, int n> |
| static void | leftInvAx (const FieldMatrix< ctype, m, n > &A, const FieldVector< ctype, m > &x, FieldVector< ctype, n > &y) |
| |
| template<int m, int n> |
| static ctype | rightInvA (const FieldMatrix< ctype, m, n > &A, FieldMatrix< ctype, n, m > &ret) |
| | Compute right pseudo-inverse of matrix A. More...
|
| |
| template<int m, int n> |
| static void | xTRightInvA (const FieldMatrix< ctype, m, n > &A, const FieldVector< ctype, n > &x, FieldVector< ctype, m > &y) |
| |