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