Go to the source code of this file.
_zhematrix+zhematrix operator 
Definition at line 3 of file _zhematrix-zhematrix.hpp.
References _zhematrix::darray, zhematrix::darray, i(), _zhematrix::n, and zhematrix::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++){
 
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 25 of file _zhematrix-zhematrix.hpp.
References _zhematrix::darray, zhematrix::darray, i(), _zhematrix::n, and zhematrix::n.
   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++){
 
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 47 of file _zhematrix-zhematrix.hpp.
References _(), zgematrix::array, zhematrix::array, _zhematrix::array, zhematrix::complete(), _zhematrix::destroy(), zgematrix::m, _zhematrix::n, and zhematrix::n.
   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;
 
   63   comple alpha =comple(1.,0.);
 
   64   comple beta =comple(0.,0.);
 
   66   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)