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