CPPLapack
 All Classes Files Functions Variables Friends
double-_zgsmatrix.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! double*_zgsmatrix operator */
00003 inline _zgsmatrix operator*(const double& d, const _zgsmatrix& 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   
00009   return mat;
00010 }
 All Classes Files Functions Variables Friends