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

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const zrovector &vec)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const zrovector vec 
)
inline

Definition at line 59 of file zrovector-io.hpp.

References zrovector::array, i(), and zrovector::l.

60 {CPPL_VERBOSE_REPORT;
61  for(CPPL_INT i=0; i<vec.l; i++){ s << " " << vec.array[i]; }
62  s << std::endl;
63 
64  return s;
65 }
CPPL_INT l
vector size
Definition: zrovector.hpp:9
_dgematrix i(const _dgbmatrix &mat)
comple * array
1D array to store vector data
Definition: zrovector.hpp:10