CPPLapack
 All Classes Files Functions Variables Friends Pages
_dgbmatrix-_dgsmatrix.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! _dgbmatrix+_dgsmatrix operator */
3 inline _dgematrix operator+(const _dgbmatrix& matA, const _dgsmatrix& 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  dgematrix newmat( matB.to_dgematrix() );
15 
16  for(CPPL_INT i=0; i<matA.m; i++){
17  const CPPL_INT jmax =std::min(matA.n,i+matA.ku+1);
18  for(CPPL_INT j=std::max(CPPL_INT(0),i-matA.kl); j<jmax; j++){
19  newmat(i,j)+=matA(i,j);
20  }
21  }
22 
23  matA.destroy();
24  matB.destroy();
25  return _(newmat);
26 }
27 
28 //=============================================================================
29 /*! _dgbmatrix-_dgsmatrix operator */
30 inline _dgematrix operator-(const _dgbmatrix& matA, const _dgsmatrix& matB)
31 {CPPL_VERBOSE_REPORT;
32 #ifdef CPPL_DEBUG
33  if(matA.n!=matB.n || matA.m!=matB.m){
34  ERROR_REPORT;
35  std::cerr << "These two matrises can not make a summation." << std::endl
36  << "Your input was (" << matA.m << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl;
37  exit(1);
38  }
39 #endif//CPPL_DEBUG
40 
41  dgematrix newmat( (-matB).to_dgematrix() );
42 
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  newmat(i,j)-=matA(i,j);
47  }
48  }
49 
50  matA.destroy();
51  matB.destroy();
52  return _(newmat);
53 }
54 
55 //=============================================================================
56 /*! _dgbmatrix*_dgsmatrix operator */
57 inline _dgematrix operator*(const _dgbmatrix& matA, const _dgsmatrix& matB)
58 {CPPL_VERBOSE_REPORT;
59 #ifdef CPPL_DEBUG
60  if(matA.n!=matB.m){
61  ERROR_REPORT;
62  std::cerr << "These two matrises can not make a product." << std::endl
63  << "Your input was (" << matA.m << "x" << matA.n << ") * (" << matB.m << "x" << matB.n << ")." << std::endl;
64  exit(1);
65  }
66 #endif//CPPL_DEBUG
67 
68  dgematrix newmat( matA.m, matB.n );
69  newmat.zero();
70 
71  const std::vector<dcomponent>::const_iterator matB_data_end =matB.data.end();
72  for(std::vector<dcomponent>::const_iterator it=matB.data.begin(); it!=matB_data_end; it++){
73  const CPPL_INT imax =std::min(matA.m,it->i+matA.kl);
74  for(CPPL_INT i=std::max(CPPL_INT(0),it->i-(matA.ku+1)); i<imax; i++){
75  newmat(i,it->j) += matA(i,it->i)*it->v;
76  }
77  }
78 
79  matA.destroy();
80  matB.destroy();
81  return _(newmat);
82 }
_dgematrix operator*(const _dgbmatrix &matA, const _dgsmatrix &matB)
CPPL_INT ku
upper band width
Definition: _dgbmatrix.hpp:12
CPPL_INT n
matrix column size
Definition: _dgsmatrix.hpp:10
_dgematrix to_dgematrix() const
void destroy() const
dgematrix & zero()
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
CPPL_INT kl
lower band width
Definition: _dgbmatrix.hpp:11
(DO NOT USE) Smart-temporary Real Double-precision General Sparse Matrix Class
Definition: _dgsmatrix.hpp:3
friend _dgematrix i(const _dgematrix &)
CPPL_INT n
matrix column size
Definition: _dgbmatrix.hpp:10
_dgematrix operator+(const _dgbmatrix &matA, const _dgsmatrix &matB)
CPPL_INT m
matrix row size
Definition: _dgsmatrix.hpp:9
void destroy() const
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class
Definition: _dgematrix.hpp:3
std::vector< dcomponent > data
matrix data
Definition: _dgsmatrix.hpp:11
(DO NOT USE) Smart-temporary Real Double-precision General Band Matrix Class
Definition: _dgbmatrix.hpp:3
_dcovector _(dcovector &vec)
_dgematrix operator-(const _dgbmatrix &matA, const _dgsmatrix &matB)
CPPL_INT m
matrix row size
Definition: _dgbmatrix.hpp:9