CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
dsymatrix-dgbmatrix.hpp File Reference

Go to the source code of this file.

Functions

_dgematrix operator+ (const dsymatrix &matA, const dgbmatrix &matB)
 
_dgematrix operator- (const dsymatrix &matA, const dgbmatrix &matB)
 
_dgematrix operator* (const dsymatrix &matA, const dgbmatrix &matB)
 

Function Documentation

_dgematrix operator+ ( const dsymatrix matA,
const dgbmatrix matB 
)
inline

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.

4 {CPPL_VERBOSE_REPORT;
5 #ifdef CPPL_DEBUG
6  if(matA.n!=matB.n || matA.n!=matB.m){
7  ERROR_REPORT;
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;
10  exit(1);
11  }
12 #endif//CPPL_DEBUG
13 
14  dgematrix newmat(matA.n, matA.n);
15 
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);
19  }
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);
23  }
24  }
25 
26  return _(newmat);
27 }
CPPL_INT m
matrix row size
Definition: dgbmatrix.hpp:9
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
CPPL_INT kl
lower band width
Definition: dgbmatrix.hpp:11
CPPL_INT ku
upper band width
Definition: dgbmatrix.hpp:12
CPPL_INT n
matrix column size
Definition: dsymatrix.hpp:10
CPPL_INT n
matrix column size
Definition: dgbmatrix.hpp:10
_dcovector _(dcovector &vec)
_dgematrix operator- ( const dsymatrix matA,
const dgbmatrix matB 
)
inline

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.

32 {CPPL_VERBOSE_REPORT;
33 #ifdef CPPL_DEBUG
34  if(matA.n!=matB.n || matA.n!=matB.m){
35  ERROR_REPORT;
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;
38  exit(1);
39  }
40 #endif//CPPL_DEBUG
41 
42  dgematrix newmat(matA.n, matA.n);
43 
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);
47  }
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);
51  }
52  }
53 
54  return _(newmat);
55 }
CPPL_INT m
matrix row size
Definition: dgbmatrix.hpp:9
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
CPPL_INT kl
lower band width
Definition: dgbmatrix.hpp:11
CPPL_INT ku
upper band width
Definition: dgbmatrix.hpp:12
CPPL_INT n
matrix column size
Definition: dsymatrix.hpp:10
CPPL_INT n
matrix column size
Definition: dgbmatrix.hpp:10
_dcovector _(dcovector &vec)
_dgematrix operator* ( const dsymatrix matA,
const dgbmatrix matB 
)
inline

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().

60 {CPPL_VERBOSE_REPORT;
61 #ifdef CPPL_DEBUG
62  if(matA.n!=matB.m){
63  ERROR_REPORT;
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;
66  exit(1);
67  }
68 #endif//CPPL_DEBUG
69 
70  dgematrix newmat( matA.n, matB.n );
71  newmat.zero();
72 
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);
78  }
79  }
80  }
81 
82  return _(newmat);
83 }
CPPL_INT m
matrix row size
Definition: dgbmatrix.hpp:9
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
CPPL_INT kl
lower band width
Definition: dgbmatrix.hpp:11
CPPL_INT ku
upper band width
Definition: dgbmatrix.hpp:12
CPPL_INT m
matrix row size
Definition: _dgematrix.hpp:9
CPPL_INT n
matrix column size
Definition: dsymatrix.hpp:10
CPPL_INT n
matrix column size
Definition: dgbmatrix.hpp:10
_dcovector _(dcovector &vec)