CPPLapack
 All Classes Files Functions Variables Friends Pages
_zhsmatrix-complex.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! _zhsmatrix*comple 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/comple 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 }
_zgsmatrix to_zgsmatrix() const
Complex Double-precision General Sparse Matrix Class.
Definition: zgsmatrix.hpp:3
_zgsmatrix operator/(const _zhsmatrix &mat, const comple &d)
(DO NOT USE) Smart-temporary Real Double-precision General Sparse Matrix Class
Definition: _zgsmatrix.hpp:3
_zgsmatrix operator*(const _zhsmatrix &mat, const comple &d)
(DO NOT USE) Smart-temporary Complex Double-precision Hermitian Sparse Matrix Class ...
Definition: _zhsmatrix.hpp:3