CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
_zhsmatrix-complex.hpp File Reference

Go to the source code of this file.

Functions

_zgsmatrix operator* (const _zhsmatrix &mat, const comple &d)
 
_zgsmatrix operator/ (const _zhsmatrix &mat, const comple &d)
 

Function Documentation

_zgsmatrix operator* ( const _zhsmatrix mat,
const comple &  d 
)
inline

_zhsmatrix*comple operator

Definition at line 3 of file _zhsmatrix-complex.hpp.

References _zhsmatrix::to_zgsmatrix().

4 {CPPL_VERBOSE_REPORT;
5  zgsmatrix newmat( mat.to_zgsmatrix() );
6  return newmat*d;
7 }
_zgsmatrix to_zgsmatrix() const
Complex Double-precision General Sparse Matrix Class.
Definition: zgsmatrix.hpp:3
_zgsmatrix operator/ ( const _zhsmatrix mat,
const comple &  d 
)
inline

_zhsmatrix/comple operator

Definition at line 11 of file _zhsmatrix-complex.hpp.

References _zhsmatrix::to_zgsmatrix().

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