Go to the source code of this file.
_dgematrix+dsymatrix operator
Definition at line 3 of file _dsymatrix-_dgematrix.hpp.
References _dsymatrix::destroy(), i(), _dgematrix::m, _dgematrix::n, and _dsymatrix::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;
14 for(CPPL_INT
i=0;
i<matA.
n;
i++) {
15 for(CPPL_INT j=0; j<matA.
n; j++) {
16 matB(
i,j) += matA(
i,j);
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
CPPL_INT n
matrix column size
_dsymatrix-dgematrix operator
Definition at line 26 of file _dsymatrix-_dgematrix.hpp.
References _dsymatrix::destroy(), i(), _dgematrix::m, _dgematrix::n, and _dsymatrix::n.
29 if(matA.
n!=matB.
n || matA.
n!=matB.
m){
31 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
32 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") - (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
37 for(CPPL_INT
i=0;
i<matA.
n;
i++) {
38 for(CPPL_INT j=0; j<matA.
n; j++) {
39 matB(
i,j) =matA(
i,j)-matB(
i,j);
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT m
matrix row size
CPPL_INT n
matrix column size
CPPL_INT n
matrix column size
_dgematrix*dgematrix operator
Definition at line 49 of file _dsymatrix-_dgematrix.hpp.
References _(), _dgematrix::array, dgematrix::array, _dsymatrix::array, _dgematrix::destroy(), _dsymatrix::destroy(), _dgematrix::m, dgematrix::m, _dgematrix::n, and _dsymatrix::n.
54 std::cerr <<
"These two matrises can not make a product." << std::endl
55 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") * (" << matB.
m <<
"x" << matB.
n <<
")." << std::endl;
66 dsymm_( &side, &uplo, &matA.
n, &matB.
n, &alpha, matA.
array, &matA.
n, matB.
array, &matB.
m, &beta, newmat.array, &newmat.m );
Real Double-precision General Dence Matrix Class.
double * array
1D array to store matrix data
CPPL_INT m
matrix row size
double * array
1D array to store matrix data
CPPL_INT n
matrix column size
CPPL_INT n
matrix column size
_dcovector _(dcovector &vec)