00001 //============================================================================= 00003 inline _zgematrix operator*(const double& d, const _zgematrix& mat) 00004 { 00005 #ifdef CPPL_VERBOSE 00006 std::cerr << "# [MARK] operator*(const double&, const _zgematrix&)" 00007 << std::endl; 00008 #endif//CPPL_VERBOSE 00009 00010 zdscal_(mat.M*mat.N, d, mat.Array, 1); 00011 return mat; 00012 }