22 std::cerr <<
"These two matrises can not make a summation." << std::endl
23 <<
"Your input was (" <<
n <<
"x" <<
n <<
") += (" << mat.
n <<
"x" << mat.
n <<
")." << std::endl;
28 for(CPPL_INT j=0; j<
n; j++){
29 for(CPPL_INT
i=j;
i<
n;
i++){
44 std::cerr <<
"These two matrises can not make a sutraction." << std::endl
45 <<
"Your input was (" <<
n <<
"x" <<
n <<
") -= (" << mat.
n <<
"x" << mat.
n <<
")." << std::endl;
50 for(CPPL_INT j=0; j<
n; j++){
51 for(CPPL_INT
i=j;
i<
n;
i++){
66 std::cerr <<
"These two matrises can not make a summation." << std::endl
67 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") + (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
74 for(CPPL_INT j=0; j<matA.
n; j++){
75 for(CPPL_INT
i=j;
i<matA.
n;
i++){
90 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
91 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") - (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
98 for(CPPL_INT j=0; j<matA.
n; j++){
99 for(CPPL_INT
i=j;
i<matA.
n;
i++){
110 {CPPL_VERBOSE_REPORT;
114 std::cerr <<
"These two matrises can not make a product." << std::endl
115 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") * (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
128 dsymm_( &side, &uplo, &matA.
n, &matB.
n, &alpha, matA.
array, &matA.
n, matB.
array, &matB.
m, &beta, newmat.
array, &newmat.
m );
dsymatrix & operator-=(const dsymatrix &)
CPPL_INT m
matrix row size
double * array
1D array to store matrix data
_dsymatrix operator-(const dsymatrix &matA, const dsymatrix &matB)
_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].
CPPL_INT const & m
matrix row size
(DO NOT USE) Smart-temporary Real Double-precision General Dence Matrix Class
dsymatrix & operator+=(const dsymatrix &)
friend _dsymatrix i(const dsymatrix &)
CPPL_INT n
matrix column size
dsymatrix & operator=(const dsymatrix &)
_dgematrix 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
void copy(const dsymatrix &)
double ** darray
array of pointers of column head addresses
_dcovector _(dcovector &vec)