CPPLapack
 All Classes Files Functions Variables Friends
dcovector-_drovector.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! dcovector*_drovector operator */
00003 inline _dgematrix operator*(const dcovector& covec, const _drovector& rovec)
00004 {VERBOSE_REPORT;
00005   dgematrix newmat(covec.l, rovec.l);
00006   for(long i=0; i<newmat.m; i++){
00007     for(long j=0; j<newmat.n; j++){
00008       newmat(i,j) =covec(i)*rovec(j);
00009     }
00010   }
00011   
00012   rovec.destroy();
00013   return _(newmat);
00014 }
 All Classes Files Functions Variables Friends