Go to the documentation of this file.00001
00002
00003 inline _dsymatrix operator*(const _dsymatrix& mat, const double& d)
00004 {VERBOSE_REPORT;
00005 for(long i=0; i<mat.n; i++){
00006 for(long j=0; j<=i; j++){
00007 mat.darray[j][i] *=d;
00008 }
00009 }
00010 return mat;
00011 }
00012
00013
00014
00015 inline _dsymatrix operator/(const _dsymatrix& mat, const double& d)
00016 {VERBOSE_REPORT;
00017 for(long i=0; i<mat.n; i++){
00018 for(long j=0; j<=i; j++){
00019 mat.darray[j][i] /=d;
00020 }
00021 }
00022 return mat;
00023 }