--- trunk/OOPSE-4/src/math/SquareMatrix.hpp 2004/10/18 23:13:23 1594 +++ trunk/OOPSE-4/src/math/SquareMatrix.hpp 2004/10/19 21:28:55 1603 @@ -80,7 +80,7 @@ namespace oopse { /** * Retunrs the inversion of this matrix. - * @todo + * @todo need implementation */ SquareMatrix inverse() { SquareMatrix result; @@ -90,7 +90,7 @@ namespace oopse { /** * Returns the determinant of this matrix. - * @todo + * @todo need implementation */ double determinant() const { double det; @@ -148,7 +148,7 @@ namespace oopse { return true; } - /** @todo need implement */ + /** @todo need implementation */ void diagonalize() { //jacobi(m, eigenValues, ortMat); } @@ -165,7 +165,7 @@ namespace oopse { SquareMatrix ortMat; if ( !isSymmetric()){ - throw(); + //throw(); } SquareMatrix m(*this);