--- trunk/src/math/RectMatrix.hpp 2004/10/18 23:13:23 101 +++ trunk/src/math/RectMatrix.hpp 2004/10/19 23:01:03 113 @@ -479,9 +479,11 @@ 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); + if (j != Col -1) + o << "\t"; } o << ")" << std::endl; }