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 1603 by tim, Tue Oct 19 21:28:55 2004 UTC vs.
Revision 1606 by tim, Tue Oct 19 23:01:03 2004 UTC

# Line 481 | Line 481 | namespace oopse {
481          for (unsigned int i = 0; i < Row ; i++) {
482              o << "(";
483              for (unsigned int j = 0; j < Col ; j++) {
484 <                o << m(i, j) << "\t";
484 >                o << m(i, j);
485 >                if (j != Col -1)
486 >                    o << "\t";
487              }
488              o << ")" << std::endl;
489          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines