Go to the source code of this file.
zhematrix+_zhematrix operator
Definition at line 65 of file zhematrix-_zhematrix.hpp.
References _zhematrix::darray, zhematrix::darray, i(), zhematrix::n, and _zhematrix::n.
70 std::cerr <<
"These two matrises can not make a summation." << std::endl
71 <<
"Your input was (" << matA.
n <<
"x" << matA.
n <<
") + (" << matB.
n <<
"x" << matB.
n <<
")." << std::endl;
76 for(CPPL_INT j=0; j<matA.
n; j++){
77 for(CPPL_INT
i=j;
i<matA.
n;
i++){
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
comple ** darray
array of pointers of column head addresses
comple ** darray
array of pointers of column head addresses
zhematrix-_zhematrix operator
Definition at line 87 of file zhematrix-_zhematrix.hpp.
References _zhematrix::darray, zhematrix::darray, i(), zhematrix::n, and _zhematrix::n.
92 std::cerr <<
"These two matrises can not make a subtraction." << std::endl
93 <<
"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++){
CPPL_INT n
matrix column size
_dgematrix i(const _dgbmatrix &mat)
CPPL_INT n
matrix column size
comple ** darray
array of pointers of column head addresses
comple ** darray
array of pointers of column head addresses
zhematrix*_zhematrix operator
Definition at line 109 of file zhematrix-_zhematrix.hpp.
References _(), zgematrix::array, _zhematrix::array, zhematrix::array, _zhematrix::complete(), _zhematrix::destroy(), zgematrix::m, zhematrix::n, and _zhematrix::n.
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;
125 comple alpha =comple(1.,0.);
126 comple beta =comple(0.,0.);
128 zhemm_( &side, &uplo, &matA.
n, &matB.
n, &alpha, matA.
array, &matA.
n, matB.
array, &matB.
n, &beta, newmat.array, &newmat.m );
CPPL_INT n
matrix column size
Complex Double-precision General Dence Matrix Class.
CPPL_INT n
matrix column size
comple * array
1D array to store matrix data
comple * array
1D array to store matrix data
_dcovector _(dcovector &vec)