CPPLapack
 All Classes Files Functions Variables Friends
double-_dsymatrix.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! double*_dsymatrix operator */
00003 inline _dsymatrix operator*(const double& d, const _dsymatrix& mat)
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   
00011   return mat;
00012 }
 All Classes Files Functions Variables Friends