ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/src/math/RectMatrix.hpp
(Generate patch)

Comparing trunk/OOPSE-2.0/src/math/RectMatrix.hpp (file contents):
Revision 1594 by tim, Mon Oct 18 23:13:23 2004 UTC vs.
Revision 1603 by tim, Tue Oct 19 21:28:55 2004 UTC

# Line 479 | Line 479 | namespace oopse {
479      template<typename Real,  unsigned int Row, unsigned int Col>
480      std::ostream &operator<< ( std::ostream& o, const RectMatrix<Real, Row, Col>& m) {
481          for (unsigned int i = 0; i < Row ; i++) {
482 <            o << "("
482 >            o << "(";
483              for (unsigned int j = 0; j < Col ; j++) {
484 <                o << m(i, j) << "\t"
484 >                o << m(i, j) << "\t";
485              }
486              o << ")" << std::endl;
487          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines