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*complex 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 }
Complex Double-precision General Sparse Matrix Class.
Definition: zgsmatrix.hpp:3
_zgsmatrix to_zgsmatrix() const
_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().

12 {CPPL_VERBOSE_REPORT;
13  zgsmatrix newmat( mat.to_zgsmatrix() );
14  return newmat/d;
15 }
Complex Double-precision General Sparse Matrix Class.
Definition: zgsmatrix.hpp:3
_zgsmatrix to_zgsmatrix() const