CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
zgsmatrix-zgbmatrix.hpp File Reference

Go to the source code of this file.

Functions

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

Function Documentation

_zgematrix operator+ ( const zgsmatrix matA,
const zgbmatrix matB 
)
inline

zgsmatrix+zgbmatrix operator

Definition at line 3 of file zgsmatrix-zgbmatrix.hpp.

References _(), i(), zgbmatrix::kl, zgbmatrix::ku, zgbmatrix::m, zgsmatrix::m, zgbmatrix::n, zgsmatrix::n, and zgsmatrix::to_zgematrix().

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( matA.to_zgematrix() );
15 
16  for(CPPL_INT i=0; i<matB.m; i++){
17  const CPPL_INT jmax =std::min(matB.n,i+matB.ku+1);
18  for(CPPL_INT j=std::max(CPPL_INT(0),i-matB.kl); j<jmax; j++){
19  newmat(i,j) +=matB(i,j);
20  }
21  }
22 
23  return _(newmat);
24 }
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
Definition: zgbmatrix.hpp:10
CPPL_INT ku
upper band width
Definition: zgbmatrix.hpp:12
Complex Double-precision General Dence Matrix Class.
Definition: zgematrix.hpp:3
_zgematrix to_zgematrix() const
CPPL_INT m
matrix row size
Definition: zgbmatrix.hpp:9
CPPL_INT kl
lower band width
Definition: zgbmatrix.hpp:11
CPPL_INT m
matrix row size
Definition: zgsmatrix.hpp:9
CPPL_INT n
matrix column size
Definition: zgsmatrix.hpp:10
_dcovector _(dcovector &vec)
_zgematrix operator- ( const zgsmatrix matA,
const zgbmatrix matB 
)
inline

zgsmatrix-zgbmatrix operator

Definition at line 28 of file zgsmatrix-zgbmatrix.hpp.

References _(), i(), zgbmatrix::kl, zgbmatrix::ku, zgbmatrix::m, zgsmatrix::m, zgbmatrix::n, zgsmatrix::n, and zgsmatrix::to_zgematrix().

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( matA.to_zgematrix() );
40 
41  for(CPPL_INT i=0; i<matB.m; i++){
42  const CPPL_INT jmax =std::min(matB.n,i+matB.ku+1);
43  for(CPPL_INT j=std::max(CPPL_INT(0),i-matB.kl); j<jmax; j++){
44  newmat(i,j) -=matB(i,j);
45  }
46  }
47 
48  return _(newmat);
49 }
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
Definition: zgbmatrix.hpp:10
CPPL_INT ku
upper band width
Definition: zgbmatrix.hpp:12
Complex Double-precision General Dence Matrix Class.
Definition: zgematrix.hpp:3
_zgematrix to_zgematrix() const
CPPL_INT m
matrix row size
Definition: zgbmatrix.hpp:9
CPPL_INT kl
lower band width
Definition: zgbmatrix.hpp:11
CPPL_INT m
matrix row size
Definition: zgsmatrix.hpp:9
CPPL_INT n
matrix column size
Definition: zgsmatrix.hpp:10
_dcovector _(dcovector &vec)
_zgematrix operator* ( const zgsmatrix matA,
const zgbmatrix matB 
)
inline

zgsmatrix*zgbmatrix operator

Definition at line 53 of file zgsmatrix-zgbmatrix.hpp.

References _(), zgsmatrix::data, zgbmatrix::kl, zgbmatrix::ku, zgsmatrix::m, zgbmatrix::m, zgsmatrix::n, zgbmatrix::n, and zgematrix::zero().

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  const std::vector<zcomponent>::const_iterator matA_data_end =matA.data.end();
68  for(std::vector<zcomponent>::const_iterator it=matA.data.begin(); it!=matA_data_end; it++){
69  const CPPL_INT jmax =std::min(matB.n,it->j+matB.ku+1);
70  for(CPPL_INT j=std::max(CPPL_INT(0),it->j-matB.kl); j<jmax; j++){
71  newmat(it->i,j) += it->v*matB(it->j,j);
72  }
73  }
74 
75  return _(newmat);
76 }
CPPL_INT n
matrix column size
Definition: zgbmatrix.hpp:10
CPPL_INT ku
upper band width
Definition: zgbmatrix.hpp:12
Complex Double-precision General Dence Matrix Class.
Definition: zgematrix.hpp:3
std::vector< zcomponent > data
matrix data
Definition: zgsmatrix.hpp:11
CPPL_INT m
matrix row size
Definition: zgbmatrix.hpp:9
CPPL_INT kl
lower band width
Definition: zgbmatrix.hpp:11
CPPL_INT m
matrix row size
Definition: zgsmatrix.hpp:9
CPPL_INT n
matrix column size
Definition: zgsmatrix.hpp:10
_dcovector _(dcovector &vec)