CPPLapack
 All Classes Files Functions Variables Friends
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*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;
}
 All Classes Files Functions Variables Friends