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   dscal_(mat.m*mat.n, d, mat.array, 1);
00006   return mat;
00007 }
 All Classes Files Functions Variables Friends