Go to the source code of this file.
_dsymatrix+_dsymatrix operator
Definition at line 3 of file _dsymatrix-_dsymatrix.hpp.
References _dsymatrix::darray, _dsymatrix::destroy(), i(), and _dsymatrix::n.
8 std::cerr <<
"These two matrises can not make a summation." << std::endl
9 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") + (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
14 for(CPPL_INT j=0; j<matA.
n; j++){
15 for(CPPL_INT
i=j;
i<matA.
n;
i++){
_dgematrix i(const _dgbmatrix &mat)
double ** darray
array of pointers of column head addresses
CPPL_INT n
matrix column size
_dsymatrix-_dsymatrix operator
Definition at line 26 of file _dsymatrix-_dsymatrix.hpp.
References _dsymatrix::darray, _dsymatrix::destroy(), i(), and _dsymatrix::n.
31 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
32 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") - (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
37 for(CPPL_INT j=0; j<matA.
n; j++){
38 for(CPPL_INT
i=j;
i<matA.
n;
i++){
_dgematrix i(const _dgbmatrix &mat)
double ** darray
array of pointers of column head addresses
CPPL_INT n
matrix column size
_dsymatrix*_dsymatrix operator
Definition at line 49 of file _dsymatrix-_dsymatrix.hpp.
References _(), dgematrix::array, _dsymatrix::array, _dsymatrix::complete(), _dsymatrix::destroy(), dgematrix::m, _dsymatrix::m, 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.
n <<
"x" << matB.
n <<
")." << std::endl;
68 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 n
matrix column size
_dcovector _(dcovector &vec)
CPPL_INT const & m
matrix row size