CPPLapack
 All Classes Files Functions Variables Friends
_dgbmatrix-misc.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! nullify all the matrix data */
00003 inline void _dgbmatrix::nullify() const
00004 {VERBOSE_REPORT;
00005   m=0;
00006   n=0;
00007   kl=0;
00008   ku=0;
00009   array=NULL;
00010   darray=NULL;
00011 }
00012 
00013 //=============================================================================
00014 /*! destroy all the matrix data */
00015 inline void _dgbmatrix::destroy() const
00016 {VERBOSE_REPORT;
00017   delete [] array;
00018   delete [] darray;
00019   array=NULL;
00020   darray=NULL;
00021 }
 All Classes Files Functions Variables Friends