--- trunk/src/math/SquareMatrix.hpp 2004/10/17 01:19:11 93 +++ trunk/src/math/SquareMatrix.hpp 2004/10/19 21:28:55 110 @@ -78,14 +78,20 @@ namespace oopse { return m; } - /** Retunrs the inversion of this matrix. */ + /** + * Retunrs the inversion of this matrix. + * @todo need implementation + */ SquareMatrix inverse() { SquareMatrix result; return result; } - /** Returns the determinant of this matrix. */ + /** + * Returns the determinant of this matrix. + * @todo need implementation + */ double determinant() const { double det; return det; @@ -142,8 +148,9 @@ namespace oopse { return true; } + /** @todo need implementation */ void diagonalize() { - jacobi(m, eigenValues, ortMat); + //jacobi(m, eigenValues, ortMat); } /** @@ -158,7 +165,7 @@ namespace oopse { SquareMatrix ortMat; if ( !isSymmetric()){ - throw(); + //throw(); } SquareMatrix m(*this); @@ -256,6 +263,7 @@ bool SquareMatrix::jacobi(const SquareMatri for (j=iq+1; j