Go to the source code of this file.
[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 }