CPPLapack
 All Classes Files Functions Variables Friends
double-_dgsmatrix.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! double*_dgsmatrix operator */
00003 inline _dgsmatrix operator*(const double& d, const _dgsmatrix& mat)
00004 {VERBOSE_REPORT;
00005   for(std::vector<dcomponent>::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