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