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<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);
31 if(matA.
n!=matB.
n || matA.
m!=matB.
m){
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;
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);
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;
67 for(CPPL_INT
i=0;
i<newmat.
m;
i++){
68 for(CPPL_INT j=0; j<newmat.
n; j++){
69 const CPPL_INT kmax =std::min(matA.
n,
i+matA.
ku+1);
70 for(CPPL_INT k=std::max(CPPL_INT(0),
i-matA.
kl); k<kmax; k++){
71 newmat(
i,j)+=matA(
i,k)*matB(k,j);
_zgematrix operator-(const zgbmatrix &matA, const zgematrix &matB)
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
CPPL_INT ku
upper band width
CPPL_INT n
matrix column size
Complex Double-precision General Dence Matrix Class.
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
_zgematrix operator*(const zgbmatrix &matA, const zgematrix &matB)
_zgematrix operator+(const zgbmatrix &matA, const zgematrix &matB)
CPPL_INT m
matrix row size
Complex Double-precision General Band Matrix Class.
CPPL_INT m
matrix row size
CPPL_INT kl
lower band width
_dcovector _(dcovector &vec)