CPPLapack
 All Classes Files Functions Variables Friends Pages
zhematrix-zgematrix.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! zhematrix+zgematrix operator */
3 inline _zgematrix operator+(const zhematrix& matA, const zgematrix& matB)
4 {CPPL_VERBOSE_REPORT;
5 #ifdef CPPL_DEBUG
6  if(matA.n!=matB.n || matA.n!=matB.m){
7  ERROR_REPORT;
8  std::cerr << "These two matrises can not make a summation." << std::endl
9  << "Your input was (" << matA.n << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl;
10  exit(1);
11  }
12 #endif//CPPL_DEBUG
13 
14  zgematrix newmat =matB;
15 
16  for(CPPL_INT i=0; i<matA.n; i++){
17  for(CPPL_INT j=0; j<matA.n; j++){
18  newmat(i,j) += matA(i,j);
19  }
20  }
21 
22  return _(newmat);
23 }
24 
25 //=============================================================================
26 /*! zhematrix-zgematrix operator */
27 inline _zgematrix operator-(const zhematrix& matA, const zgematrix& matB)
28 {CPPL_VERBOSE_REPORT;
29 #ifdef CPPL_DEBUG
30  if(matA.n!=matB.n || matA.n!=matB.m){
31  ERROR_REPORT;
32  std::cerr << "These two matrises can not make a summation." << std::endl
33  << "Your input was (" << matA.n << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl;
34  exit(1);
35  }
36 #endif//CPPL_DEBUG
37 
38  zgematrix newmat =-matB;
39 
40  for(CPPL_INT i=0; i<matA.n; i++){
41  for(CPPL_INT j=0; j<matA.n; j++){
42  newmat(i,j) += matA(i,j);
43  }
44  }
45 
46  return _(newmat);
47 }
48 
49 //=============================================================================
50 /*! zhematrix*zgematrix operator */
51 inline _zgematrix operator*(const zhematrix& matA, const zgematrix& matB)
52 {CPPL_VERBOSE_REPORT;
53 #ifdef CPPL_DEBUG
54  if(matA.n!=matB.m){
55  ERROR_REPORT;
56  std::cerr << "These two matrises can not make a product." << std::endl
57  << "Your input was (" << matA.n << "x" << matA.n << ") * (" << matB.m << "x" << matB.n << ")." << std::endl;
58  exit(1);
59  }
60 #endif//CPPL_DEBUG
61 
62  zgematrix newmat( matA.n, matB.n );
63  char side ='l';
64  char uplo ='l';
65  comple alpha =comple(1.,0.);
66  comple beta =comple(0.,0.);
67 
68  zhemm_( &side, &uplo, &matA.n, &matB.n, &alpha, matA.array, &matA.n, matB.array, &matB.m, &beta, newmat.array, &newmat.m );
69 
70  return _(newmat);
71 }
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
Definition: zgematrix.hpp:10
Complex Double-precision General Dence Matrix Class.
Definition: zgematrix.hpp:3
CPPL_INT n
matrix column size
Definition: zhematrix.hpp:11
comple * array
1D array to store matrix data
Definition: zgematrix.hpp:11
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
Definition: _zgematrix.hpp:3
comple * array
1D array to store matrix data
Definition: zhematrix.hpp:12
_zgematrix operator+(const zhematrix &matA, const zgematrix &matB)
_zgematrix operator-(const zhematrix &matA, const zgematrix &matB)
CPPL_INT m
matrix row size
Definition: zgematrix.hpp:9
Complex Double-precision Hermitian Matrix Class [l-type (UPLO=l) Strage].
Definition: zhematrix.hpp:4
_dcovector _(dcovector &vec)
_zgematrix operator*(const zhematrix &matA, const zgematrix &matB)