add logAbsDeterminant()

move log and exp functors from Array to Core
update documentation
This commit is contained in:
Benoit Jacob
2009-08-24 09:46:17 -04:00
parent f31b5a7114
commit b8106e97b4
6 changed files with 87 additions and 70 deletions

View File

@@ -99,6 +99,7 @@ template<typename MatrixType> void qr_invertible()
m1 = m3 * m1 * m3;
qr.compute(m1);
VERIFY_IS_APPROX(absdet, qr.absDeterminant());
VERIFY_IS_APPROX(ei_log(absdet), qr.logAbsDeterminant());
}
template<typename MatrixType> void qr_verify_assert()