Go to the source code of this file.
_zgbmatrix+zhematrix operator
Definition at line 3 of file _zgbmatrix-zhematrix.hpp.
References _(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, _zgbmatrix::n, zhematrix::n, and zhematrix::to_zgematrix().
6 if(matA.
m!=matB.
n || matA.
n!=matB.
n){
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;
16 for(CPPL_INT
i=0;
i<matA.
m;
i++){
17 const CPPL_INT jmax =std::min(matA.
n,
i+matA.
ku+1);
18 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matA.
kl); j<jmax; j++){
19 newmat(
i,j) += matA(
i,j);
CPPL_INT ku
upper band width
CPPL_INT kl
lower band width
_dgematrix i(const _dgbmatrix &mat)
Complex Double-precision General Dence Matrix Class.
_zgematrix to_zgematrix() const
CPPL_INT n
matrix column size
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
_zgbmatrix-zgematrix operator
Definition at line 29 of file _zgbmatrix-zhematrix.hpp.
References _(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, _zgbmatrix::n, and zhematrix::n.
32 if(matA.
m!=matB.
n || matA.
n!=matB.
n){
34 std::cerr <<
"These two matrises can not make a summation." << std::endl
35 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
40 zgematrix newmat( (-matB).to_zgematrix() );
41 for(CPPL_INT
i=0;
i<matA.
m;
i++){
42 const CPPL_INT jmax =std::min(matA.
n,
i+matA.
ku+1);
43 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matA.
kl); j<jmax; j++){
44 newmat(
i,j) += matA(
i,j);
CPPL_INT ku
upper band width
CPPL_INT kl
lower band width
_dgematrix i(const _dgbmatrix &mat)
Complex Double-precision General Dence Matrix Class.
CPPL_INT n
matrix column size
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
_zgbmatrix*zgematrix operator
Definition at line 54 of file _zgbmatrix-zhematrix.hpp.
References _(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, zgematrix::m, zgematrix::n, _zgbmatrix::n, zhematrix::n, and zgematrix::zero().
59 std::cerr <<
"These two matrises can not make a product." << std::endl
60 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") * (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
68 for(CPPL_INT
i=0;
i<newmat.
m;
i++){
69 for(CPPL_INT j=0; j<newmat.n; j++){
70 const CPPL_INT kmax =std::min(matA.
n,
i+matA.
ku+1);
71 for(CPPL_INT k=std::max(CPPL_INT(0),
i-matA.
kl); k<kmax; k++){
72 newmat(
i,j) += matA(
i,k)*matB(k,j);
CPPL_INT ku
upper band width
CPPL_INT kl
lower band width
_dgematrix i(const _dgbmatrix &mat)
Complex Double-precision General Dence Matrix Class.
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)