Main Page | Class List | File List | Class Members | File Members | Related Pages

dgematrix-io.hpp File Reference

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const dgematrix &mat)


Function Documentation

std::ostream& operator<< std::ostream &  s,
const dgematrix mat
[inline]
 

Definition at line 67 of file dgematrix-io.hpp.

References dgematrix::M, and dgematrix::N.

00068 {
00069   for(long i=0; i<mat.M; i++){
00070     for(long j=0; j<mat.N; j++){
00071       s << " " << mat(i,j);
00072     }
00073     s << std::endl;
00074   }
00075   return s;
00076 }


Generated on Sat Jan 31 19:25:44 2004 for CPPScaLapack by doxygen 1.3.5