6 if(matA.
n!=matB.
n || matA.
n!=matB.
m){
8 std::cerr <<
"These two matrises can not make a summation." << std::endl
9 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") + (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
16 for(CPPL_INT
i=0;
i<matB.
m;
i++){
17 for(CPPL_INT j=0; j<matA.
n; j++){
18 newmat(
i,j) =matA(
i,j);
20 const CPPL_INT jmax =std::min(matB.
n,
i+matB.
ku+1);
21 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matB.
kl); j<jmax; j++){
22 newmat(
i,j) += matB(
i,j);
35 if(matA.
n!=matB.
n || matA.
n!=matB.
m){
37 std::cerr <<
"These two matrises can not make a summation." << std::endl
38 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") + (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
45 for(CPPL_INT
i=0;
i<matB.
m;
i++){
46 for(CPPL_INT j=0; j<matA.
n; j++){
47 newmat(
i,j) =matA(
i,j);
49 const CPPL_INT jmax =std::min(matB.
n,
i+matB.
ku+1);
50 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matB.
kl); j<jmax; j++){
51 newmat(
i,j) -= matB(
i,j);
66 std::cerr <<
"These two matrises can not make a product." << std::endl
67 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") * (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
75 for(CPPL_INT
i=0;
i<newmat.
m;
i++){
76 for(CPPL_INT j=0; j<newmat.
n; j++){
77 const CPPL_INT kmax =std::min(matB.
m,j+matB.
kl+1);
78 for(CPPL_INT k=std::max(CPPL_INT(0),j-matB.
ku); k<kmax; k++){
79 newmat(
i,j) += matA(
i,k)*matB(k,j);
(DO NOT USE) Smart-temporary Complex Double-precision Hermitian Matrix Class
_zgematrix operator+(const _zhematrix &matA, const zgbmatrix &matB)
CPPL_INT n
matrix column size
_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.
_zgematrix operator-(const _zhematrix &matA, const zgbmatrix &matB)
(DO NOT USE) Smart-temporary Complex Double-precision General Dence Matrix Class
CPPL_INT m
matrix row size
Complex Double-precision General Band Matrix Class.
_zgematrix operator*(const _zhematrix &matA, const zgbmatrix &matB)
CPPL_INT m
matrix row size
CPPL_INT kl
lower band width
_dcovector _(dcovector &vec)