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