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*complex 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/complex operator
Definition at line 11 of file zhsmatrix-complex.hpp.
References zhsmatrix::to_zgsmatrix().
{VERBOSE_REPORT; zgsmatrix newmat( mat.to_zgsmatrix() ); return newmat/d; }