Go to the source code of this file.
dsymatrix*double operator
Definition at line 33 of file dsymatrix-double.hpp.
References _(), dsymatrix::darray, i(), and dsymatrix::n.
37 for(CPPL_INT j=0; j<mat.
n; j++){
38 for(CPPL_INT
i=j;
i<mat.
n;
i++){
39 newmat.darray[j][
i] =mat.
darray[j][
i]*d;
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision Symmetric Matrix Class [l-type (UPLO=l) Strage].
CPPL_INT n
matrix column size
double ** darray
array of pointers of column head addresses
_dcovector _(dcovector &vec)
dsymatrix/double operator
Definition at line 48 of file dsymatrix-double.hpp.
References _(), dsymatrix::darray, i(), and dsymatrix::n.
52 for(CPPL_INT j=0; j<mat.
n; j++){
53 for(CPPL_INT
i=j;
i<mat.
n;
i++){
54 newmat.darray[j][
i] =mat.
darray[j][
i]/d;
_dgematrix i(const _dgbmatrix &mat)
Real Double-precision Symmetric Matrix Class [l-type (UPLO=l) Strage].
CPPL_INT n
matrix column size
double ** darray
array of pointers of column head addresses
_dcovector _(dcovector &vec)