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);
32 if(matA.
n!=matB.
n || matA.
m!=matB.
m){
34 std::cerr <<
"These two matrises can not make a summation." << std::endl
35 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
40 dgematrix newmat( (-matB).to_dgematrix() );
42 for(CPPL_INT
i=0;
i<matA.
m;
i++){
43 const CPPL_INT jmax =std::min(matA.
n,
i+matA.
ku+1);
44 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matA.
kl); j<jmax; j++){
45 newmat(
i,j)-=matA(
i,j);
60 std::cerr <<
"These two matrises can not make a product." << std::endl
61 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") * (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
69 const std::vector<dcomponent>::const_iterator matB_data_end =matB.
data.end();
70 for(std::vector<dcomponent>::const_iterator it=matB.
data.begin(); it!=matB_data_end; it++){
71 const CPPL_INT imax =std::min(matA.
m,it->i+matA.
kl);
72 for(CPPL_INT
i=std::max(CPPL_INT(0),it->i-(matA.
ku+1));
i<imax;
i++){
73 newmat(
i,it->j) += matA(
i,it->
i)*it->v;
Real Double-precision General Sparse Matrix Class.
std::vector< dcomponent > data
matrix data
CPPL_INT ku
upper band width
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
CPPL_INT kl
lower band width
friend _dgematrix i(const _dgematrix &)
CPPL_INT n
matrix column size
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class
_dgematrix to_dgematrix() const
_dgematrix operator-(const _dgbmatrix &matA, const dgsmatrix &matB)
_dgematrix operator+(const _dgbmatrix &matA, const dgsmatrix &matB)
(DO NOT USE) Smart-temporary Real Double-precision General Band Matrix Class
_dcovector _(dcovector &vec)
_dgematrix operator*(const _dgbmatrix &matA, const dgsmatrix &matB)
CPPL_INT m
matrix row size
CPPL_INT m
matrix row size