00001 //============================================================================= 00002 /*! _zgematrix*comple operator */ 00003 inline _zgematrix operator*(const _zgematrix& mat, const comple& d) 00004 {VERBOSE_REPORT; 00005 zscal_(mat.m*mat.n, d, mat.array, 1); 00006 return mat; 00007 } 00008 00009 //============================================================================= 00010 /*! _zgematrix/comple operator */ 00011 inline _zgematrix operator/(const _zgematrix& mat, const comple& d) 00012 {VERBOSE_REPORT; 00013 zscal_(mat.m*mat.n, 1./d, mat.array, 1); 00014 return mat; 00015 }