MOAB  4.9.3pre
Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex > Class Template Reference

Sparse matrix. More...

#include <MappedSparseMatrix.h>

Inheritance diagram for Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >:
Collaboration diagram for Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >:

List of all members.

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

Detailed Description

template<typename _Scalar, int _Flags, typename _StorageIndex>
class Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >

Sparse matrix.

Deprecated:
Use Map<SparseMatrix<> >
Parameters:
_Scalarthe 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.


Member Typedef Documentation

template<typename _Scalar, int _Flags, typename _StorageIndex>
typedef Map<SparseMatrix<_Scalar, _Flags, _StorageIndex> > Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::Base [private]
template<typename _Scalar, int _Flags, typename _StorageIndex>
typedef Base::Scalar Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::Scalar

Definition at line 40 of file MappedSparseMatrix.h.

template<typename _Scalar, int _Flags, typename _StorageIndex>
typedef Base::StorageIndex Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::StorageIndex

Definition at line 39 of file MappedSparseMatrix.h.


Constructor & Destructor Documentation

template<typename _Scalar, int _Flags, typename _StorageIndex>
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)
    {}
template<typename _Scalar, int _Flags, typename _StorageIndex>
Eigen::MappedSparseMatrix< _Scalar, _Flags, _StorageIndex >::~MappedSparseMatrix ( ) [inline]

Empty destructor

Definition at line 47 of file MappedSparseMatrix.h.

{}

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines