Go to the source code of this file.
_zgbmatrix+_zhematrix operator 
Definition at line 3 of file _zgbmatrix-_zhematrix.hpp.
References _(), _zhematrix::destroy(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, _zgbmatrix::n, and _zhematrix::n.
    6   if(matA.
m!=matB.
n || matA.
n!=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 ku
upper band width 
CPPL_INT kl
lower band width 
CPPL_INT n
matrix column size 
_dgematrix i(const _dgbmatrix &mat)
Complex Double-precision General Dence Matrix Class. 
CPPL_INT m
matrix row size 
CPPL_INT n
matrix column size 
_dcovector _(dcovector &vec)
 
 
 
_zgbmatrix-_zhematrix operator 
Definition at line 32 of file _zgbmatrix-_zhematrix.hpp.
References _(), _zhematrix::destroy(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, zgematrix::m, zgematrix::n, _zgbmatrix::n, and _zhematrix::n.
   35   if(matA.
m!=matB.
n || matA.
n!=matB.
n){
 
   37     std::cerr << 
"These two matrises can not make a summation." << std::endl
 
   38               << 
"Your input was (" << matA.
m << 
"x" << matA.
n << 
") + (" << matB.
n << 
"x" << matB.
n << 
")." << std::endl;
 
   44   for(CPPL_INT 
i=0; 
i<newmat.
m; 
i++){
 
   45     for(CPPL_INT j=0; j<newmat.n; j++){
 
   46       newmat(
i,j) = -matB(
i,j);
 
   48     const CPPL_INT jmax =std::min(matA.
n,
i+matA.
ku+1);
 
   49     for(CPPL_INT j=std::max(CPPL_INT(0),
i-matA.
kl); j<jmax; j++){
 
   50       newmat(
i,j) += matA(
i,j);
 
CPPL_INT ku
upper band width 
CPPL_INT kl
lower band width 
CPPL_INT n
matrix column size 
_dgematrix i(const _dgbmatrix &mat)
Complex Double-precision General Dence Matrix Class. 
CPPL_INT m
matrix row size 
CPPL_INT m
matrix row size 
CPPL_INT n
matrix column size 
_dcovector _(dcovector &vec)
 
 
 
_zgbmatrix*_zhematrix operator 
Definition at line 61 of file _zgbmatrix-_zhematrix.hpp.
References _(), _zhematrix::destroy(), _zgbmatrix::destroy(), i(), _zgbmatrix::kl, _zgbmatrix::ku, _zgbmatrix::m, zgematrix::m, zgematrix::n, _zgbmatrix::n, _zhematrix::n, and zgematrix::zero().
   66     std::cerr << 
"These two matrises can not make a product." << std::endl
 
   67               << 
"Your input was (" << matA.
m << 
"x" << matA.
n << 
") * (" << matB.
n << 
"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(matA.
n,
i+matA.
ku+1);
 
   78       for(CPPL_INT k=std::max(CPPL_INT(0),
i-matA.
kl); k<kmax; k++){
 
   79         newmat(
i,j) += matA(
i,k)*matB(k,j);
 
CPPL_INT ku
upper band width 
CPPL_INT kl
lower band width 
CPPL_INT n
matrix column size 
_dgematrix i(const _dgbmatrix &mat)
Complex Double-precision General Dence Matrix Class. 
CPPL_INT m
matrix row size 
CPPL_INT m
matrix row size 
CPPL_INT n
matrix column size 
_dcovector _(dcovector &vec)