Go to the source code of this file.
dgbmatrix+_dsymatrix operator
Definition at line 3 of file dgbmatrix-_dsymatrix.hpp.
References _(), _dsymatrix::destroy(), i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, dgbmatrix::n, and _dsymatrix::n.
6 if(matA.
n!=matB.
n || matA.
m!=matB.
n){
8 std::cerr <<
"These two matrises can not make a summation." << std::endl
9 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
15 for(CPPL_INT
i=0;
i<matA.
m;
i++){
16 for(CPPL_INT j=0; j<matB.
n; j++){
17 newmat(
i,j) = matB(
i,j);
19 const CPPL_INT jmax =std::min(matA.
n,
i+matA.
ku+1);
20 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matA.
kl); j<jmax; j++){
21 newmat(
i,j)+=matA(
i,j);
CPPL_INT m
matrix row 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
CPPL_INT n
matrix column size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
dgbmatrix-_dsymatrix operator
Definition at line 31 of file dgbmatrix-_dsymatrix.hpp.
References _(), _dsymatrix::destroy(), i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, dgbmatrix::n, and _dsymatrix::n.
34 if(matA.
n!=matB.
n || matA.
m!=matB.
n){
36 std::cerr <<
"These two matrises can not make a summation." << std::endl
37 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") + (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
43 for(CPPL_INT
i=0;
i<matA.
m;
i++){
44 for(CPPL_INT j=0; j<matB.
n; j++){
45 newmat(
i,j) = -matB(
i,j);
47 const CPPL_INT jmax =std::min(matA.
n,
i+matA.
ku+1);
48 for(CPPL_INT j=std::max(CPPL_INT(0),
i-matA.
kl); j<jmax; j++){
49 newmat(
i,j) += matA(
i,j);
CPPL_INT m
matrix row 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
CPPL_INT n
matrix column size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)
dgbmatrix*_dsymatrix operator
Definition at line 59 of file dgbmatrix-_dsymatrix.hpp.
References _(), _dsymatrix::destroy(), i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, dgematrix::m, dgematrix::n, dgbmatrix::n, _dsymatrix::n, and dgematrix::zero().
64 std::cerr <<
"These two matrises can not make a product." << std::endl
65 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") * (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
73 for(CPPL_INT
i=0;
i<newmat.
m;
i++){
74 for(CPPL_INT j=0; j<newmat.n; j++){
75 const CPPL_INT kmax =std::min(matA.
n,
i+matA.
ku+1);
76 for(CPPL_INT k=std::max(CPPL_INT(0),
i-matA.
kl); k<kmax; k++){
77 newmat(
i,j)+=matA(
i,k)*matB(k,j);
CPPL_INT m
matrix row 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
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)