Download this file
1 2 3 4 5 6 7
//============================================================================= /*! double*_dgematrix operator */ inline _dgematrix operator*(const double& d, const _dgematrix& mat) {CPPL_VERBOSE_REPORT; dscal_(mat.m*mat.n, d, mat.array, 1); return mat; }