CPPLapack
 All Classes Files Functions Variables Friends
complex-zrovector.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! comple*zrovector operator */
00003 inline _zrovector operator*(const comple& d, const zrovector& vec)
00004 {VERBOSE_REPORT;
00005   zrovector newvec(vec.l);
00006   for(long i=0; i<vec.l; i++){ newvec.array[i] =d*vec.array[i]; }
00007   
00008   return _(newvec);
00009 }
 All Classes Files Functions Variables Friends