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 22 of file _zrovector-io.hpp.

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

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