Go to the source code of this file.
Functions | |
_zgematrix | operator+ (const _zgematrix &matA, const zhematrix &matB) |
_zgematrix | operator- (const _zgematrix &matA, const zhematrix &matB) |
_zgematrix | operator* (const _zgematrix &matA, const zhematrix &matB) |
_zgematrix operator+ | ( | const _zgematrix & | matA, |
const zhematrix & | matB | ||
) | [inline] |
_zgematrix+zhematrix operator
Definition at line 3 of file _zgematrix-zhematrix.hpp.
References i(), _zgematrix::m, _zgematrix::n, and zhematrix::n.
{VERBOSE_REPORT; #ifdef CPPL_DEBUG if(matA.n!=matB.n || matA.m!=matB.n){ ERROR_REPORT; std::cerr << "These two matrises can not make a summation." << std::endl << "Your input was (" << matA.m << "x" << matA.n << ") + (" << matB.n << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG for(long i=0; i<matB.n; i++){ for(long j=0; j<matB.n; j++){ matA(i,j)+=matB(i,j); } } return matA; }
_zgematrix operator- | ( | const _zgematrix & | matA, |
const zhematrix & | matB | ||
) | [inline] |
_zgematrix-zhematrix operator
Definition at line 25 of file _zgematrix-zhematrix.hpp.
References i(), _zgematrix::m, _zgematrix::n, and zhematrix::n.
{VERBOSE_REPORT; #ifdef CPPL_DEBUG if(matA.n!=matB.n || matA.m!=matB.n){ ERROR_REPORT; std::cerr << "These two matrises can not make a summation." << std::endl << "Your input was (" << matA.m << "x" << matA.n << ") + (" << matB.n << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG for(long i=0; i<matB.n; i++){ for(long j=0; j<matB.n; j++){ matA(i,j)-=matB(i,j); } } return matA; }
_zgematrix operator* | ( | const _zgematrix & | matA, |
const zhematrix & | matB | ||
) | [inline] |
_zgematrix*zhematrix operator
Definition at line 47 of file _zgematrix-zhematrix.hpp.
References _(), _zgematrix::array, zgematrix::array, zhematrix::array, _zgematrix::destroy(), _zgematrix::m, zgematrix::m, _zgematrix::n, and zhematrix::n.
{VERBOSE_REPORT; #ifdef CPPL_DEBUG if(matA.n!=matB.n){ ERROR_REPORT; std::cerr << "These two matrises can not make a product." << std::endl << "Your input was (" << matA.m << "x" << matA.n << ") * (" << matB.n << "x" << matB.n << ")." << std::endl; exit(1); } #endif//CPPL_DEBUG zgematrix newmat( matA.n, matB.n ); zhemm_( 'R', 'l', matB.n, matA.n, comple(1.0,0.0), matB.array, matB.n, matA.array, matA.m, comple(0.0,0.0), newmat.array, newmat.m ); matA.destroy(); return _(newmat); }