* \brief Computes the log-determinant of this matrix. * \return The log-determinant */
| 47 | * \return The log-determinant |
| 48 | */ |
| 49 | DeterminantMatrix logDeterminant() const |
| 50 | { |
| 51 | return impl().logDeterminant(); |
| 52 | } |
| 53 | }; |
| 54 | |
| 55 | CUMAT_NAMESPACE_END |
nothing calls this directly
no test coverage detected