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

Go to the source code of this file.

Functions

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

Function Documentation

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

zgbmatrix+zhematrix operator

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

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

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  zgematrix newmat(matB.n,matB.n);
15 
16  for(CPPL_INT i=0; i<matA.m; i++){
17  for(CPPL_INT j=0; j<matB.n; j++){
18  newmat(i,j) =matB(i,j);
19  }
20  const CPPL_INT jmax =std::min(matA.n,i+matA.ku+1);
21  for(CPPL_INT j=std::max(CPPL_INT(0),i-matA.kl); j<jmax; j++){
22  newmat(i,j) += matA(i,j);
23  }
24  }
25 
26  return _(newmat);
27 }
_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
CPPL_INT n
matrix column size
Definition: zhematrix.hpp:11
CPPL_INT m
matrix row size
Definition: zgbmatrix.hpp:9
CPPL_INT kl
lower band width
Definition: zgbmatrix.hpp:11
_dcovector _(dcovector &vec)
_zgematrix operator- ( const zgbmatrix matA,
const zhematrix matB 
)
inline

zgbmatrix-zhematrix operator

Definition at line 31 of file zgbmatrix-zhematrix.hpp.

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

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  zgematrix 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  return _(newmat);
54 }
_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
CPPL_INT n
matrix column size
Definition: zhematrix.hpp:11
CPPL_INT m
matrix row size
Definition: zgbmatrix.hpp:9
CPPL_INT kl
lower band width
Definition: zgbmatrix.hpp:11
_dcovector _(dcovector &vec)
_zgematrix operator* ( const zgbmatrix matA,
const zhematrix matB 
)
inline

zgbmatrix*zhematrix operator

Definition at line 58 of file zgbmatrix-zhematrix.hpp.

References _(), i(), zgbmatrix::kl, zgbmatrix::ku, zgbmatrix::m, zgematrix::m, zgematrix::n, zgbmatrix::n, zhematrix::n, and zgematrix::zero().

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