PEXSI
 All Classes Namespaces Files Functions Variables Friends Pages
Public Member Functions | Public Attributes | List of all members
PEXSI::NumMat< F > Class Template Reference

Numerical matrix. More...

#include <nummat_decl.hpp>

Public Member Functions

void allocate (F *data=NULL)
 
void deallocate ()
 
 NumMat (Int m=0, Int n=0)
 
 NumMat (Int m, Int n, bool owndata, F *data)
 
 NumMat (const NumMat &C)
 
NumMatCopy (const NumMat &C)
 
NumMatoperator= (const NumMat &C)
 
void Resize (Int m, Int n)
 
const F & operator() (Int i, Int j) const
 
F & operator() (Int i, Int j)
 
F * Data () const
 
F * VecData (Int j) const
 
Int m () const
 
Int n () const
 
Int Size () const
 
Int ByteSize () const
 
Int AllocatedSize () const
 

Public Attributes

Int bufsize_
 
bool owndata_
 Whether it owns the data.
 
Int m_
 The size of the first dimension.
 
Int n_
 The size of second dimension.
 
F * data_
 The pointer for the actual data.
 

Detailed Description

template<class F>
class PEXSI::NumMat< F >

Numerical matrix.

NumMat is a portable encapsulation of a pointer to represent a 2D matrix, which can either own (owndata == true) or view (owndata == false) a piece of data.


The documentation for this class was generated from the following file: