CPPLapack
 All Classes Files Functions Variables Friends
complex-zgematrix.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! comple*zgematrix operator */
00003 inline _zgematrix operator*(const comple& d, const zgematrix& mat)
00004 {VERBOSE_REPORT;
00005   zgematrix newmat(mat.m, mat.n);
00006   for(long i=0; i<mat.m*mat.n; i++){ newmat.array[i] =d*mat.array[i]; }
00007   
00008   return _(newmat);
00009 }
 All Classes Files Functions Variables Friends