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