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

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 22 of file _zcovector-io.hpp.

References _zcovector::array, _zcovector::destroy(), i(), and _zcovector::l.

23 {CPPL_VERBOSE_REPORT;
24  for(CPPL_INT i=0; i<vec.l; i++){
25  s << " " << vec.array[i] << std::endl;
26  }
27 
28  vec.destroy();
29  return s;
30 }
_dgematrix i(const _dgbmatrix &mat)
void destroy() const
comple * array
1D array to store vector data
Definition: _zcovector.hpp:10
CPPL_INT l
vector size
Definition: _zcovector.hpp:9