MOAB
4.9.3pre
|
#include <MappedSparseMatrix.h>
Public Types | |
typedef Base::StorageIndex | StorageIndex |
typedef Base::Scalar | Scalar |
Public Member Functions | |
MappedSparseMatrix (Index rows, Index cols, Index nnz, StorageIndex *outerIndexPtr, StorageIndex *innerIndexPtr, Scalar *valuePtr, StorageIndex *innerNonZeroPtr=0) | |
~MappedSparseMatrix () | |
Private Types | |
typedef Map< SparseMatrix < _Scalar, _Flags, _StorageIndex > > | Base |
Sparse matrix.
_Scalar | the scalar type, i.e. the type of the coefficients |
See http://www.netlib.org/linalg/html_templates/node91.html for details on the storage scheme.
Definition at line 32 of file MappedSparseMatrix.h.
typedef Map<SparseMatrix<_Scalar, _Flags, _StorageIndex> > Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::Base [private] |
Reimplemented from Eigen::Map< SparseMatrix< _Scalar, _Flags, _StorageIndex > >.
Definition at line 35 of file MappedSparseMatrix.h.
typedef Base::Scalar Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::Scalar |
Definition at line 40 of file MappedSparseMatrix.h.
typedef Base::StorageIndex Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::StorageIndex |
Definition at line 39 of file MappedSparseMatrix.h.
Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::MappedSparseMatrix | ( | Index | rows, |
Index | cols, | ||
Index | nnz, | ||
StorageIndex * | outerIndexPtr, | ||
StorageIndex * | innerIndexPtr, | ||
Scalar * | valuePtr, | ||
StorageIndex * | innerNonZeroPtr = 0 |
||
) | [inline] |
Definition at line 42 of file MappedSparseMatrix.h.
: Base(rows, cols, nnz, outerIndexPtr, innerIndexPtr, valuePtr, innerNonZeroPtr) {}
Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::~MappedSparseMatrix | ( | ) | [inline] |