CPPLapack
 All Classes Files Functions Variables Friends
double-_zhsmatrix.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! double*_zhsmatrix operator */
00003 inline _zhsmatrix operator*(const double& d, const _zhsmatrix& mat)
00004 {VERBOSE_REPORT;
00005   for(std::vector<zcomponent>::iterator it=mat.data.begin(); it!=mat.data.end(); it++){
00006     it->v *=d;
00007   }
00008   return mat;
00009 }
 All Classes Files Functions Variables Friends