Template Class Matrix#

Class Documentation#

template<class T>
class Matrix#

Public Types

typedef T Elem#

Public Functions

inline Matrix()#
inline Matrix(unsigned _nr, unsigned _nc, unsigned spare = 1)#
inline Matrix(const Matrix &that)#
inline void operator=(const Matrix &that)#
inline ~Matrix()#
inline unsigned cols() const#
inline unsigned rows() const#
inline T &Entry(unsigned index1, unsigned index2) const#
inline T &operator()(unsigned index1, unsigned index2) const#
inline RowVector<Matrix<T>, T> operator[](int index)#
inline RowVector<const Matrix<T>, T> operator[](int index) const#
inline void Reset(unsigned index1, unsigned index2)#
inline void Initialize(const T &init)#
inline bool IsEmpty() const#