--- trunk/OOPSE-2.0/src/math/RectMatrix.hpp 2004/10/18 23:13:23 1594 +++ trunk/OOPSE-2.0/src/math/RectMatrix.hpp 2004/10/19 21:28:55 1603 @@ -479,9 +479,9 @@ namespace oopse { template std::ostream &operator<< ( std::ostream& o, const RectMatrix& m) { for (unsigned int i = 0; i < Row ; i++) { - o << "(" + o << "("; for (unsigned int j = 0; j < Col ; j++) { - o << m(i, j) << "\t" + o << m(i, j) << "\t"; } o << ")" << std::endl; }