Go to the source code of this file.
dgbmatrix+dgsmatrix operator
Definition at line 3 of file dgbmatrix-dgsmatrix.hpp.
References _(), i(), dgbmatrix::kl, dgbmatrix::ku, dgsmatrix::m, dgbmatrix::m, dgsmatrix::n, dgbmatrix::n, and dgsmatrix::to_dgematrix().
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);
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
CPPL_INT kl
lower band width
CPPL_INT ku
upper band width
_dgematrix to_dgematrix() const
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size
dgbmatrix-dgsmatrix operator
Definition at line 28 of file dgbmatrix-dgsmatrix.hpp.
References _(), i(), dgbmatrix::kl, dgbmatrix::ku, dgsmatrix::m, dgbmatrix::m, dgsmatrix::n, dgbmatrix::n, and dgsmatrix::to_dgematrix().
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);
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
CPPL_INT kl
lower band width
CPPL_INT ku
upper band width
_dgematrix to_dgematrix() const
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size
dgbmatrix*dgsmatrix operator
Definition at line 53 of file dgbmatrix-dgsmatrix.hpp.
References _(), dgsmatrix::data, i(), _dgematrix::i, dgbmatrix::kl, dgbmatrix::ku, dgsmatrix::m, dgbmatrix::m, dgbmatrix::n, dgsmatrix::n, and dgematrix::zero().
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 const std::vector<dcomponent>::const_iterator matB_data_end =matB.
data.end();
68 for(std::vector<dcomponent>::const_iterator it=matB.
data.begin(); it!=matB_data_end; it++){
69 const CPPL_INT imax =std::min(matA.
m,it->i+matA.
kl);
70 for(CPPL_INT
i=std::max(CPPL_INT(0),it->i-(matA.
ku+1));
i<imax;
i++){
71 newmat(
i,it->j) += matA(
i,it->
i)*it->v;
std::vector< dcomponent > data
matrix data
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
CPPL_INT kl
lower band width
CPPL_INT ku
upper band width
friend _dgematrix i(const _dgematrix &)
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
CPPL_INT m
matrix row size