CPPLapack
 All Classes Files Functions Variables Friends
zhematrix-cast.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! convert to _zgematrix */
00003 inline _zgematrix zhematrix::to_zgematrix() const
00004 {VERBOSE_REPORT;
00005   zgematrix newmat(n,n);
00006   for(long i=0; i<n; i++){
00007     for(long j=0; j<n; j++){
00008       newmat(i,j) =(*this)(i,j);
00009     }
00010   }
00011   
00012   return _(newmat);
00013 }
 All Classes Files Functions Variables Friends