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

Go to the source code of this file.

Functions

_zgematrix operator+ (const zhematrix &matA, const _zgematrix &matB)
_zgematrix operator- (const zhematrix &matA, const _zgematrix &matB)
_zgematrix operator* (const zhematrix &matA, const _zgematrix &matB)

Function Documentation

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

_zgematrix+zhematrix operator

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

References i(), _zgematrix::m, _zgematrix::n, and zhematrix::n.

{VERBOSE_REPORT;
#ifdef  CPPL_DEBUG
  if(matA.n!=matB.n || matA.n!=matB.m){
    ERROR_REPORT;
    std::cerr << "These two matrises can not make a summation." << std::endl
              << "Your input was (" << matA.n << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl;
    exit(1);
  }
#endif//CPPL_DEBUG
  
  for(long i=0; i<matA.n; i++){ for(long j=0; j<matA.n; j++){
    matB(i,j)+=matA(i,j);
  }}
  
  return matB;
}
_zgematrix operator- ( const zhematrix matA,
const _zgematrix matB 
) [inline]

_zgematrix-zgematrix operator

Definition at line 23 of file zhematrix-_zgematrix.hpp.

References i(), _zgematrix::m, _zgematrix::n, and zhematrix::n.

{VERBOSE_REPORT;
#ifdef  CPPL_DEBUG
  if(matA.n!=matB.n || matA.n!=matB.m){
    ERROR_REPORT;
    std::cerr << "These two matrises can not make a subtraction." << std::endl
              << "Your input was (" << matA.n << "x" << matA.n << ") - (" << matB.m << "x" << matB.n << ")." << std::endl;
    exit(1);
  }
#endif//CPPL_DEBUG

  for(long i=0; i<matA.n; i++){ for(long j=0; j<matA.n; j++){
    matB(i,j) =matA(i,j)-matB(i,j);
  }}
  
  return matB;
}
_zgematrix operator* ( const zhematrix matA,
const _zgematrix matB 
) [inline]

_zgematrix*zgematrix operator

Definition at line 43 of file zhematrix-_zgematrix.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.m){
    ERROR_REPORT;
    std::cerr << "These two matrises can not make a product." << std::endl
              << "Your input was (" << matA.n << "x" << matA.n << ") * (" << matB.m << "x" << matB.n << ")." << std::endl;
    exit(1);
  }
#endif//CPPL_DEBUG
  
  zgematrix newmat( matA.n, matB.n );
  zhemm_( 'l', 'l', matA.n, matB.n, comple(1.0,0.0),
          matA.array, matA.n, matB.array, matB.m,
          comple(0.0,0.0), newmat.array, newmat.m );
  
  matB.destroy();
  return _(newmat);
}
 All Classes Files Functions Variables Friends