Go to the source code of this file.
[inline]
double*dsymatrix operator
Definition at line 3 of file double-dsymatrix.hpp.
References _(), dsymatrix::darray, i(), and dsymatrix::n.
{VERBOSE_REPORT; dsymatrix newmat(mat.n); for(long i=0; i<mat.n; i++){ for(long j=0; j<=i; j++){ newmat.darray[j][i] =d*mat.darray[j][i]; } } return _(newmat); }