CPPLapack
 All Classes Files Functions Variables Friends Pages
Functions
_dsymatrix-dgematrix.hpp File Reference

Go to the source code of this file.

Functions

_dgematrix operator+ (const _dsymatrix &matA, const dgematrix &matB)
 
_dgematrix operator- (const _dsymatrix &matA, const dgematrix &matB)
 
_dgematrix operator* (const _dsymatrix &matA, const dgematrix &matB)
 

Function Documentation

_dgematrix operator+ ( const _dsymatrix matA,
const dgematrix matB 
)
inline

_dsymatrix+dgematrix operator

Definition at line 3 of file _dsymatrix-dgematrix.hpp.

References _(), _dsymatrix::destroy(), i(), dgematrix::m, dgematrix::n, and _dsymatrix::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 =matB;
15 
16  for(CPPL_INT i=0; i<matA.n; i++){
17  for(CPPL_INT j=0; j<matA.n; j++ ){
18  newmat(i,j)+=matA(i,j);
19  }
20  }
21 
22  matA.destroy();
23  return _(newmat);
24 }
CPPL_INT m
matrix row size
Definition: dgematrix.hpp:9
void destroy() const
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
Definition: dgematrix.hpp:10
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
_dcovector _(dcovector &vec)
_dgematrix operator- ( const _dsymatrix matA,
const dgematrix matB 
)
inline

_dsymatrix-dgematrix operator

Definition at line 28 of file _dsymatrix-dgematrix.hpp.

References _(), _dsymatrix::destroy(), i(), dgematrix::m, dgematrix::n, and _dsymatrix::n.

29 {CPPL_VERBOSE_REPORT;
30 #ifdef CPPL_DEBUG
31  if(matA.n!=matB.n || matA.n!=matB.m){
32  ERROR_REPORT;
33  std::cerr << "These two matrises can not make a subtraction." << std::endl
34  << "Your input was (" << matA.n << "x" << matA.n << ") - (" << matB.m << "x" << matB.n << ")." << std::endl;
35  exit(1);
36  }
37 #endif//CPPL_DEBUG
38 
39  dgematrix newmat =-matB;
40 
41  for(CPPL_INT i=0; i<matA.n; i++){
42  for(CPPL_INT j=0; j<matA.n; j++ ){
43  newmat(i,j)+=matA(i,j);
44  }
45  }
46 
47  matA.destroy();
48  return _(newmat);
49 }
CPPL_INT m
matrix row size
Definition: dgematrix.hpp:9
void destroy() const
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
Definition: dgematrix.hpp:10
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
_dcovector _(dcovector &vec)
_dgematrix operator* ( const _dsymatrix matA,
const dgematrix matB 
)
inline

_dsymatrix*dgematrix operator

Definition at line 53 of file _dsymatrix-dgematrix.hpp.

References _(), dgematrix::array, _dsymatrix::array, _dsymatrix::destroy(), dgematrix::m, dgematrix::n, and _dsymatrix::n.

54 {CPPL_VERBOSE_REPORT;
55 #ifdef CPPL_DEBUG
56  if(matA.n!=matB.m){
57  ERROR_REPORT;
58  std::cerr << "These two matrises can not make a product." << std::endl
59  << "Your input was (" << matA.n << "x" << matA.n << ") * (" << matB.m << "x" << matB.n << ")." << std::endl;
60  exit(1);
61  }
62 #endif//CPPL_DEBUG
63 
64  dgematrix newmat( matA.n, matB.n );
65  char side ='l';
66  char uplo ='l';
67  double alpha =1.;
68  double beta =0.;
69 
70  dsymm_( &side, &uplo, &matA.n, &matB.n, &alpha, matA.array, &matA.n, matB.array, &matB.m, &beta, newmat.array, &newmat.m );
71 
72  matA.destroy();
73  return _(newmat);
74 }
CPPL_INT m
matrix row size
Definition: dgematrix.hpp:9
void destroy() const
double * array
1D array to store matrix data
Definition: dgematrix.hpp:11
CPPL_INT n
matrix column size
Definition: dgematrix.hpp:10
Real Double-precision General Dence Matrix Class.
Definition: dgematrix.hpp:3
double * array
1D array to store matrix data
Definition: _dsymatrix.hpp:12
CPPL_INT n
matrix column size
Definition: _dsymatrix.hpp:11
_dcovector _(dcovector &vec)