|
| template<class T > |
| double | determinant (const T &M) |
| | Calculates determinant of a rectangular matrix. More...
|
| |
| arma::mat::fixed< 1, 1 > | normal_matrix (const arma::mat::fixed< 1, 2 > &A) |
| |
| arma::mat::fixed< 1, 1 > | normal_matrix (const arma::mat::fixed< 2, 1 > &A) |
| |
| arma::mat::fixed< 1, 1 > | normal_matrix (const arma::mat::fixed< 1, 3 > &A) |
| |
| arma::mat::fixed< 1, 1 > | normal_matrix (const arma::mat::fixed< 3, 1 > &A) |
| |
| arma::mat::fixed< 2, 2 > | normal_matrix (const arma::mat::fixed< 2, 3 > &A) |
| |
| arma::mat::fixed< 2, 2 > | normal_matrix (const arma::mat::fixed< 3, 2 > &A) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 1, 1 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 2, 2 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 3, 3 > &M) |
| |
| template<> |
| double | determinant (FMT_UNUSED const arma::mat::fixed< 0, 3 > &M) |
| |
| template<> |
| double | determinant (FMT_UNUSED const arma::mat::fixed< 3, 0 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 1, 2 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 2, 1 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 1, 3 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 3, 1 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 2, 3 > &M) |
| |
| template<> |
| double | determinant (const arma::mat::fixed< 3, 2 > &M) |
| |
| template<arma::uword m, arma::uword n> |
| arma::mat::fixed< n, m > | inverse (const arma::mat::fixed< m, n > &A) |
| | Calculates inverse of rectangular matrix or pseudoinverse of non-rectangular matrix. More...
|
| |
| template<> |
| arma::mat::fixed< 1, 1 > | inverse (const arma::mat::fixed< 1, 1 > &A) |
| |
| template<> |
| arma::mat::fixed< 2, 2 > | inverse (const arma::mat::fixed< 2, 2 > &A) |
| |
| template<> |
| arma::mat::fixed< 3, 3 > | inverse (const arma::mat::fixed< 3, 3 > &A) |
| |