CPPLapack
 All Classes Files Functions Variables Friends
Functions
_zgematrix-_zhematrix.hpp File Reference

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)

Function Documentation

_zgematrix operator+ ( const _zgematrix matA,
const _zhematrix matB 
) [inline]

_zgematrix+_zhematrix operator

Definition at line 3 of file _zgematrix-_zhematrix.hpp.

References _zhematrix::destroy(), 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);
  }}
  
  matB.destroy();
  return matA;
}
_zgematrix operator- ( const _zgematrix matA,
const _zhematrix matB 
) [inline]

_zgematrix-_zhematrix operator

Definition at line 24 of file _zgematrix-_zhematrix.hpp.

References _zhematrix::destroy(), 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);
  }}
  
  matB.destroy();
  return matA;
}
_zgematrix operator* ( const _zgematrix matA,
const _zhematrix matB 
) [inline]

_zgematrix*_zhematrix operator

Definition at line 45 of file _zgematrix-_zhematrix.hpp.

References _(), _zhematrix::array, _zgematrix::array, zgematrix::array, _zgematrix::destroy(), _zhematrix::destroy(), _zgematrix::m, zgematrix::m, _zhematrix::n, and _zgematrix::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();
  matB.destroy();
  return _(newmat);
}
 All Classes Files Functions Variables Friends