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