CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
_dgbmatrix-_dsymatrix.hpp File Reference

Go to the source code of this file.

Functions

_dgematrix operator+ (const _dgbmatrix &matA, const _dsymatrix &matB)
 
_dgematrix operator- (const _dgbmatrix &matA, const _dsymatrix &matB)
 
_dgematrix operator* (const _dgbmatrix &matA, const _dsymatrix &matB)
 

Function Documentation

_dgematrix operator+ ( const _dgbmatrix matA,
const _dsymatrix matB 
)
inline

_dgbmatrix+_dsymatrix operator

Definition at line 3 of file _dgbmatrix-_dsymatrix.hpp.

References _(), _dgbmatrix::destroy(), _dsymatrix::destroy(), i(), _dgbmatrix::kl, _dgbmatrix::ku, _dgbmatrix::m, _dgbmatrix::n, and _dsymatrix::n.

4 {CPPL_VERBOSE_REPORT;
5 #ifdef CPPL_DEBUG
6  if(matA.m!=matB.n || matA.n!=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  matA.destroy();
26  matB.destroy();
27  return _(newmat);
28 }
CPPL_INT ku
upper band width
Definition: _dgbmatrix.hpp:12
void destroy() const
void destroy() const
_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
CPPL_INT n
matrix column size
Definition: _dgbmatrix.hpp:10
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size
Definition: _dgbmatrix.hpp:9
_dgematrix operator- ( const _dgbmatrix matA,
const _dsymatrix matB 
)
inline

_dgbmatrix-_dsymatrix operator

Definition at line 32 of file _dgbmatrix-_dsymatrix.hpp.

References _(), _dgbmatrix::destroy(), _dsymatrix::destroy(), i(), _dgbmatrix::kl, _dgbmatrix::ku, _dgbmatrix::m, dgematrix::m, dgematrix::n, _dgbmatrix::n, and _dsymatrix::n.

33 {CPPL_VERBOSE_REPORT;
34 #ifdef CPPL_DEBUG
35  if(matA.m!=matB.n || matA.n!=matB.n){
36  ERROR_REPORT;
37  std::cerr << "These two matrises can not make a summation." << std::endl
38  << "Your input was (" << matA.m << "x" << matA.n << ") + (" << matB.n << "x" << matB.n << ")." << std::endl;
39  exit(1);
40  }
41 #endif//CPPL_DEBUG
42 
43  dgematrix newmat(matB.n, matB.n);
44  for(CPPL_INT i=0; i<newmat.m; i++){
45  for(CPPL_INT j=0; j<newmat.n; j++){
46  newmat(i,j) = -matB(i,j);
47  }
48  const CPPL_INT jmax =std::min(matA.n,i+matA.ku+1);
49  for(CPPL_INT j=std::max(CPPL_INT(0),i-matA.kl); j<jmax; j++){
50  newmat(i,j) += matA(i,j);
51  }
52  }
53 
54  matA.destroy();
55  matB.destroy();
56  return _(newmat);
57 }
CPPL_INT ku
upper band width
Definition: _dgbmatrix.hpp:12
void destroy() const
void destroy() const
_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
CPPL_INT n
matrix column size
Definition: _dgbmatrix.hpp:10
CPPL_INT m
matrix row size
Definition: _dgematrix.hpp:9
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size
Definition: _dgbmatrix.hpp:9
_dgematrix operator* ( const _dgbmatrix matA,
const _dsymatrix matB 
)
inline

_dgbmatrix*_dsymatrix operator

Definition at line 61 of file _dgbmatrix-_dsymatrix.hpp.

References _(), _dsymatrix::destroy(), _dgbmatrix::destroy(), i(), _dgbmatrix::kl, _dgbmatrix::ku, _dgbmatrix::m, dgematrix::m, dgematrix::n, _dgbmatrix::n, _dsymatrix::n, and dgematrix::zero().

62 {CPPL_VERBOSE_REPORT;
63 #ifdef CPPL_DEBUG
64  if(matA.n!=matB.n){
65  ERROR_REPORT;
66  std::cerr << "These two matrises can not make a product." << std::endl
67  << "Your input was (" << matA.m << "x" << matA.n << ") * (" << matB.n << "x" << matB.n << ")." << std::endl;
68  exit(1);
69  }
70 #endif//CPPL_DEBUG
71 
72  dgematrix newmat( matA.m, matB.n );
73  newmat.zero();
74 
75  for(CPPL_INT i=0; i<newmat.m; i++){
76  for(CPPL_INT j=0; j<newmat.n; j++){
77  const CPPL_INT kmax =std::min(matA.n,i+matA.ku+1);
78  for(CPPL_INT k=std::max(CPPL_INT(0),i-matA.kl); k<kmax; k++){
79  newmat(i,j) += matA(i,k)*matB(k,j);
80  }
81  }
82  }
83 
84  matA.destroy();
85  matB.destroy();
86  return _(newmat);
87 }
CPPL_INT ku
upper band width
Definition: _dgbmatrix.hpp:12
void destroy() const
void destroy() const
_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
CPPL_INT n
matrix column size
Definition: _dgbmatrix.hpp:10
CPPL_INT m
matrix row size
Definition: _dgematrix.hpp:9
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size
Definition: _dgbmatrix.hpp:9