00001 //============================================================================= 00002 /*! zhsmatrix*complex operator */ 00003 inline _zgsmatrix operator*(const zhsmatrix& mat, const comple& d) 00004 {VERBOSE_REPORT; 00005 zgsmatrix newmat( mat.to_zgsmatrix() ); 00006 return newmat*d; 00007 } 00008 00009 //============================================================================= 00010 /*! zhsmatrix/complex operator */ 00011 inline _zgsmatrix operator/(const zhsmatrix& mat, const comple& d) 00012 {VERBOSE_REPORT; 00013 zgsmatrix newmat( mat.to_zgsmatrix() ); 00014 return newmat/d; 00015 }