* \brief Computes the determinant of this matrix * \return The determinant */
| 39 | * \return The determinant |
| 40 | */ |
| 41 | DeterminantMatrix determinant() const |
| 42 | { |
| 43 | return impl().determinant(); |
| 44 | } |
| 45 | /** |
| 46 | * \brief Computes the log-determinant of this matrix. |
| 47 | * \return The log-determinant |
nothing calls this directly
no test coverage detected