CPPLapack
 All Classes Files Functions Variables Friends Pages
zhsmatrix-complex.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! zhsmatrix*complex operator */
3 inline _zgsmatrix operator*(const zhsmatrix& mat, const comple& d)
4 {CPPL_VERBOSE_REPORT;
5  zgsmatrix newmat( mat.to_zgsmatrix() );
6  return newmat*d;
7 }
8 
9 //=============================================================================
10 /*! zhsmatrix/complex operator */
11 inline _zgsmatrix operator/(const zhsmatrix& mat, const comple& d)
12 {CPPL_VERBOSE_REPORT;
13  zgsmatrix newmat( mat.to_zgsmatrix() );
14  return newmat/d;
15 }
Complex Double-precision General Sparse Matrix Class.
Definition: zgsmatrix.hpp:3
(DO NOT USE) Smart-temporary Real Double-precision General Sparse Matrix Class
Definition: _zgsmatrix.hpp:3
_zgsmatrix to_zgsmatrix() const
Complex Double-precision Hermitian Sparse Matrix Class.
Definition: zhsmatrix.hpp:3
_zgsmatrix operator/(const zhsmatrix &mat, const comple &d)
_zgsmatrix operator*(const zhsmatrix &mat, const comple &d)