CPPLapack
 All Classes Files Functions Variables Friends
double-zgematrix.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! double*zgematrix operator */
00003 inline _zgematrix operator*(const double& d, const zgematrix& mat)
00004 {VERBOSE_REPORT;
00005   zgematrix newmat(mat.m, mat.n);
00006   for(long i=0; i<mat.m*mat.n; i++){ newmat.array[i] =d*mat.array[i]; }  
00007   return _(newmat);
00008 }
 All Classes Files Functions Variables Friends