6 if(matA.
n!=matB.
n || matA.
m!=matB.
m){
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;
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);
33 if(matA.
n!=matB.
n || matA.
m!=matB.
m){
35 std::cerr <<
"These two matrises can not make a summation." << std::endl
36 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
43 for(CPPL_INT
i=0;
i<matB.
m;
i++){
44 const CPPL_INT jmax =std::min(matB.
n,
i+matB.
ku+1);
45 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matB.
kl); j<jmax; j++){
46 newmat(
i,j) -=matB(
i,j);
62 std::cerr <<
"These two matrises can not make a product." << std::endl
63 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") * (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
71 const std::vector<zcomponent>::const_iterator matA_data_end =matA.
data.end();
72 for(std::vector<zcomponent>::const_iterator it=matA.
data.begin(); it!=matA_data_end; it++){
73 const CPPL_INT jmax =std::min(matB.
n,it->j+matB.
ku+1);
74 for(CPPL_INT j=std::max(CPPL_INT(0),it->j-matB.
kl); j<jmax; j++){
75 newmat(it->i,j) += it->v*matB(it->j,j);
CPPL_INT ku
upper band width
CPPL_INT kl
lower band width
_zgematrix operator+(const _zgsmatrix &matA, const _zgbmatrix &matB)
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
(DO NOT USE) Smart-temporary Real Double-precision General Sparse Matrix Class
_zgematrix operator*(const _zgsmatrix &matA, const _zgbmatrix &matB)
Complex Double-precision General Dence Matrix Class.
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
CPPL_INT m
matrix row size
_zgematrix operator-(const _zgsmatrix &matA, const _zgbmatrix &matB)
(DO NOT USE) Smart-temporary Complex Double-precision General Band Matrix Class
CPPL_INT m
matrix row size
_zgematrix to_zgematrix() const
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
std::vector< zcomponent > data
matrix data