Go to the source code of this file.
_dgematrix+_dgsmatrix operator
Definition at line 3 of file _dgematrix-_dgsmatrix.hpp.
References _dgsmatrix::data, _dgsmatrix::destroy(), _dgsmatrix::m, _dgematrix::m, _dgematrix::n, and _dgsmatrix::n.
6 if(matA.
m!=matB.
m || 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.
m <<
"x" << matB.
n <<
")." << std::endl;
14 const std::vector<dcomponent>::const_iterator matB_data_end =matB.
data.end();
15 for(std::vector<dcomponent>::const_iterator it=matB.
data.begin(); it!=matB_data_end; it++){
16 matA(it->i,it->j) += it->v;
CPPL_INT n
matrix column size
CPPL_INT m
matrix row size
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
std::vector< dcomponent > data
matrix data
_dgematrix-_dgsmatrix operator
Definition at line 25 of file _dgematrix-_dgsmatrix.hpp.
References _dgematrix::array, _dgsmatrix::data, _dgsmatrix::destroy(), i(), _dgsmatrix::m, _dgematrix::m, _dgematrix::n, and _dgsmatrix::n.
28 if(matA.
m!=matB.
m || matA.
n!=matB.
n){
30 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
31 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") - (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
37 for(CPPL_INT
i=0;
i<matA.
m*matA.
n;
i++){
42 const std::vector<dcomponent>::const_iterator matB_data_end =matB.
data.end();
43 for(std::vector<dcomponent>::const_iterator it=matB.
data.begin(); it!=matB_data_end; it++){
44 matA(it->i,it->j) += it->v;
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT m
matrix row size
CPPL_INT m
matrix row size
double * array
1D array to store matrix data
CPPL_INT n
matrix column size
std::vector< dcomponent > data
matrix data
_dgematrix*_dgsmatrix operator
Definition at line 53 of file _dgematrix-_dgsmatrix.hpp.
References _(), _dgsmatrix::data, _dgematrix::destroy(), _dgsmatrix::destroy(), i(), _dgematrix::i, _dgsmatrix::m, _dgematrix::m, _dgematrix::n, _dgsmatrix::n, and dgematrix::zero().
58 std::cerr <<
"These two matrises can not make a product." << std::endl
59 <<
"Your input was (" << matA.
m <<
"x" << matA.
n <<
") * (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
67 const std::vector<dcomponent>::const_iterator matB_data_end =matB.
data.end();
68 for(std::vector<dcomponent>::const_iterator it=matB.
data.begin(); it!=matB_data_end; it++){
69 for(CPPL_INT
i=0;
i<matA.
m;
i++){
70 newmat(
i,it->j) += matA(
i,it->
i)*it->v;
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
friend _dgematrix i(const _dgematrix &)
CPPL_INT m
matrix row size
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
std::vector< dcomponent > data
matrix data
_dcovector _(dcovector &vec)