Go to the source code of this file.
dsymatrix+dgbmatrix operator 
Definition at line 3 of file dsymatrix-dgbmatrix.hpp.
References _(), i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, dsymatrix::n, and dgbmatrix::n.
    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=
i; j<matA.
n; j++){
 
   18       newmat(
i,j) = newmat(j,
i) = 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);
 
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)
 
 
 
 
dsymatrix-dgbmatrix operator 
Definition at line 31 of file dsymatrix-dgbmatrix.hpp.
References _(), i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, dsymatrix::n, and dgbmatrix::n.
   34   if(matA.
n!=matB.
n || matA.
n!=matB.
m){
 
   36     std::cerr << 
"These two matrises can not make a summation." << std::endl
 
   37               << 
"Your input was (" << matA.
n << 
"x" << matA.
n << 
") + (" << matB.
m << 
"x" << matB.
n << 
")." << std::endl;
 
   44   for(CPPL_INT 
i=0; 
i<matB.
m; 
i++){
 
   45     for(CPPL_INT j=
i; j<matA.
n; j++){
 
   46       newmat(
i,j) = newmat(j,
i) = matA(
i,j);
 
   48     const CPPL_INT jmax =std::min(matB.
n,
i+matB.
ku+1);
 
   49     for(CPPL_INT j=std::max(CPPL_INT(0),
i-matB.
kl); j<jmax; j++){
 
   50       newmat(
i,j) -= matB(
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)
 
 
 
 
dsymatrix*dgbmatrix operator 
Definition at line 59 of file dsymatrix-dgbmatrix.hpp.
References _(), i(), dgbmatrix::kl, dgbmatrix::ku, dgbmatrix::m, dgematrix::m, dsymatrix::n, dgematrix::n, dgbmatrix::n, and dgematrix::zero().
   64     std::cerr << 
"These two matrises can not make a product." << std::endl
 
   65               << 
"Your input was (" << matA.
n << 
"x" << matA.
n << 
") * (" << matB.
m << 
"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(matB.
m,j+matB.
kl+1);
 
   76       for(CPPL_INT k=std::max(CPPL_INT(0),j-matB.
ku); 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)