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

Go to the source code of this file.

Functions

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

Function Documentation

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

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

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

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