CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
_zgbmatrix-_zgematrix.hpp File Reference

Go to the source code of this file.

Functions

_zgematrix operator+ (const _zgbmatrix &matA, const _zgematrix &matB)
 
_zgematrix operator- (const _zgbmatrix &matA, const _zgematrix &matB)
 
_zgematrix operator* (const _zgbmatrix &matA, const _zgematrix &matB)
 

Function Documentation

_zgematrix operator+ ( const _zgbmatrix matA,
const _zgematrix matB 
)
inline

_zgbmatrix+_zgematrix operator

Definition at line 3 of file _zgbmatrix-_zgematrix.hpp.

References _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgematrix::m, _zgbmatrix::m, _zgbmatrix::n, and _zgematrix::n.

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  matA.destroy();
22  return matB;
23 }
CPPL_INT ku
upper band width
Definition: _zgbmatrix.hpp:12
CPPL_INT m
matrix row size
Definition: _zgematrix.hpp:9
CPPL_INT kl
lower band width
Definition: _zgbmatrix.hpp:11
_dgematrix i(const _dgbmatrix &mat)
void destroy() const
CPPL_INT m
matrix row size
Definition: _zgbmatrix.hpp:9
CPPL_INT n
matrix column size
Definition: _zgbmatrix.hpp:10
CPPL_INT n
matrix column size
Definition: _zgematrix.hpp:10
_zgematrix operator- ( const _zgbmatrix matA,
const _zgematrix matB 
)
inline

_zgbmatrix-_zgematrix operator

Definition at line 27 of file _zgbmatrix-_zgematrix.hpp.

References _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgematrix::m, _zgbmatrix::m, _zgbmatrix::n, and _zgematrix::n.

28 {CPPL_VERBOSE_REPORT;
29 #ifdef CPPL_DEBUG
30  if(matA.n!=matB.n || matA.m!=matB.m){
31  ERROR_REPORT;
32  std::cerr << "These two matrises can not make a summation." << std::endl
33  << "Your input was (" << matA.m << "x" << matA.n << ") + (" << matB.m << "x" << matB.n << ")." << std::endl;
34  exit(1);
35  }
36 #endif//CPPL_DEBUG
37 
38  for(CPPL_INT i=0; i<matA.m; i++){
39  const CPPL_INT jmax =std::min(matA.n,i+matA.ku+1);
40  for(CPPL_INT j=std::max(CPPL_INT(0),i-matA.kl); j<jmax; j++){
41  matB(i,j) =matA(i,j)-matB(i,j);
42  }
43  }
44 
45  matA.destroy();
46  return matB;
47 }
CPPL_INT ku
upper band width
Definition: _zgbmatrix.hpp:12
CPPL_INT m
matrix row size
Definition: _zgematrix.hpp:9
CPPL_INT kl
lower band width
Definition: _zgbmatrix.hpp:11
_dgematrix i(const _dgbmatrix &mat)
void destroy() const
CPPL_INT m
matrix row size
Definition: _zgbmatrix.hpp:9
CPPL_INT n
matrix column size
Definition: _zgbmatrix.hpp:10
CPPL_INT n
matrix column size
Definition: _zgematrix.hpp:10
_zgematrix operator* ( const _zgbmatrix matA,
const _zgematrix matB 
)
inline

_zgbmatrix*_zgematrix operator

Definition at line 51 of file _zgbmatrix-_zgematrix.hpp.

References _(), _zgematrix::destroy(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, zgematrix::m, _zgematrix::m, _zgematrix::n, _zgbmatrix::n, zgematrix::n, and zgematrix::zero().

52 {CPPL_VERBOSE_REPORT;
53 #ifdef CPPL_DEBUG
54  if(matA.n!=matB.m){
55  ERROR_REPORT;
56  std::cerr << "These two matrises can not make a product." << std::endl
57  << "Your input was (" << matA.m << "x" << matA.n << ") * (" << matB.m << "x" << matB.n << ")." << std::endl;
58  exit(1);
59  }
60 #endif//CPPL_DEBUG
61 
62  zgematrix newmat( matA.m, matB.n );
63  newmat.zero();
64 
65  for(CPPL_INT i=0; i<newmat.m; i++){
66  for(CPPL_INT j=0; j<newmat.n; j++){
67  const CPPL_INT kmax =std::min(matA.n,i+matA.ku+1);
68  for(CPPL_INT k=std::max(CPPL_INT(0),i-matA.kl); k<kmax; k++){
69  newmat(i,j)+=matA(i,k)*matB(k,j);
70  }
71  }
72  }
73 
74  matA.destroy();
75  matB.destroy();
76  return _(newmat);
77 }
CPPL_INT ku
upper band width
Definition: _zgbmatrix.hpp:12
CPPL_INT m
matrix row size
Definition: _zgematrix.hpp:9
CPPL_INT kl
lower band width
Definition: _zgbmatrix.hpp:11
_dgematrix i(const _dgbmatrix &mat)
void destroy() const
Complex Double-precision General Dence Matrix Class.
Definition: zgematrix.hpp:3
CPPL_INT m
matrix row size
Definition: _dgematrix.hpp:9
void destroy() const
CPPL_INT m
matrix row size
Definition: _zgbmatrix.hpp:9
CPPL_INT n
matrix column size
Definition: _zgbmatrix.hpp:10
_dcovector _(dcovector &vec)
CPPL_INT n
matrix column size
Definition: _zgematrix.hpp:10