Fixed some issue with scalar multiplications (explicit) and continued with UNIT tests

This commit is contained in:
Klaus Basan
2013-04-21 01:13:23 +02:00
parent f4affe55ef
commit bd53371de4
16 changed files with 255 additions and 91 deletions

View File

@@ -18,9 +18,10 @@ int BlackMiscTest::CSamplesVectorMatrix::samples()
CMatrix3x3 mr = m;
qDebug() << m << mr;
mr.setRandom();
CMatrix3x3 mi = mr.inverse();
bool im;
CMatrix3x3 mi = mr.inverse(im);
CMatrix3x3 mid = mr * mi;
qDebug() << mr << mi << mid;
qDebug() << mr << mi << mid << im;
// bye
qDebug() << "-----------------------------------------------";