CPPLapack
 All Classes Files Functions Variables Friends Pages
complex-zrovector.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! comple*zrovector operator */
3 inline _zrovector operator*(const comple& d, const zrovector& vec)
4 {CPPL_VERBOSE_REPORT;
5  zrovector newvec(vec.l);
6 
7  for(CPPL_INT i=0; i<vec.l; i++){
8  newvec.array[i] =d*vec.array[i];
9  }
10 
11  return _(newvec);
12 }
CPPL_INT l
vector size
Definition: zrovector.hpp:9
_dgematrix i(const _dgbmatrix &mat)
_zrovector operator*(const comple &d, const zrovector &vec)
Complex Double-precision Row Vector Class.
Definition: zrovector.hpp:3
(DO NOT USE) Smart-temporary Complex Double-precision Row Vector Class
Definition: _zrovector.hpp:3
_dcovector _(dcovector &vec)
comple * array
1D array to store vector data
Definition: zrovector.hpp:10