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++){
30 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
31 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") - (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
36 for(CPPL_INT j=0; j<matA.
n; j++){
37 for(CPPL_INT
i=j;
i<matA.
n;
i++){
52 std::cerr <<
"These two matrises can not make a product." << std::endl
53 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") * (" << matB.
n <<
"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 );
_dgematrix operator*(const _dsymatrix &matA, const dsymatrix &matB)
CPPL_INT m
matrix row size
double * array
1D array to store matrix data
_dsymatrix operator-(const _dsymatrix &matA, const dsymatrix &matB)
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision General Dence Matrix Class.
Real Double-precision Symmetric Matrix Class [l-type (UPLO=l) Strage].
double * array
1D array to store matrix data
CPPL_INT const & m
matrix row size
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class
double ** darray
array of pointers of column head addresses
CPPL_INT n
matrix column size
_dsymatrix operator+(const _dsymatrix &matA, const dsymatrix &matB)
(DO NOT USE) Smart-temporary Real Double-precision Symmetric Matrix Class
double * array
1D array to store matrix data
CPPL_INT n
matrix column size
double ** darray
array of pointers of column head addresses
_dcovector _(dcovector &vec)