CPPLapack
 All Classes Files Functions Variables Friends
Functions
zgematrix-io.hpp File Reference

Go to the source code of this file.

Functions

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

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const zgematrix mat 
) [inline]

Definition at line 63 of file zgematrix-io.hpp.

References i(), zgematrix::m, and zgematrix::n.

{VERBOSE_REPORT;
  for(long i=0; i<mat.m; i++){
    for(long j=0; j<mat.n; j++){
      s << " " << mat(i,j);
    }
    s << std::endl;
  }
  return s;
}
 All Classes Files Functions Variables Friends