CPPLapack
 All Classes Files Functions Variables Friends
_zhsmatrix-complex.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! _zhsmatrix*comple 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/comple 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 }
 All Classes Files Functions Variables Friends