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) |
_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().
{VERBOSE_REPORT; zgsmatrix newmat( mat.to_zgsmatrix() ); return newmat*d; }
_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().
{VERBOSE_REPORT; zgsmatrix newmat( mat.to_zgsmatrix() ); return newmat/d; }