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++){ for(long j=0; j<newmat.n; j++){
00007     newmat(i,j) =covec(i)*rovec(j);
00008   }}
00009   
00010   return _(newmat);
00011 }
 All Classes Files Functions Variables Friends