Represents a rectangular matrix with a banded storage. More...
#include <BandMatrix.h>
Public Types | |
typedef internal::traits < BandMatrix >::Scalar | Scalar |
typedef internal::traits < BandMatrix >::Index | Index |
typedef internal::traits < BandMatrix > ::CoefficientsType | CoefficientsType |
Public Member Functions | |
BandMatrix (Index rows=Rows, Index cols=Cols, Index supers=Supers, Index subs=Subs) | |
Index | rows () const |
Index | cols () const |
Index | supers () const |
Index | subs () const |
const CoefficientsType & | coeffs () const |
CoefficientsType & | coeffs () |
Protected Attributes | |
CoefficientsType | m_coeffs |
internal::variable_if_dynamic < Index, Rows > | m_rows |
internal::variable_if_dynamic < Index, Supers > | m_supers |
internal::variable_if_dynamic < Index, Subs > | m_subs |
Represents a rectangular matrix with a banded storage.
_Scalar | Numeric type, i.e. float, double, int | |
Rows | Number of rows, or Dynamic | |
Cols | Number of columns, or Dynamic | |
Supers | Number of super diagonal | |
Subs | Number of sub diagonal | |
_Options | A combination of either RowMajor or ColMajor, and of SelfAdjoint The former controls storage order, and defaults to column-major. The latter controls whether the matrix represents a selfadjoint matrix in which case either Supers of Subs have to be null. |
typedef internal::traits<BandMatrix>::CoefficientsType internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::CoefficientsType |
typedef internal::traits<BandMatrix>::Index internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::Index |
typedef internal::traits<BandMatrix>::Scalar internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::Scalar |
internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::BandMatrix | ( | Index | rows = Rows , |
|
Index | cols = Cols , |
|||
Index | supers = Supers , |
|||
Index | subs = Subs | |||
) | [inline] |
const CoefficientsType& internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::coeffs | ( | ) | const [inline] |
Reimplemented from internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
CoefficientsType& internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::coeffs | ( | ) | [inline] |
Reimplemented from internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
Index internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::cols | ( | ) | const [inline] |
Reimplemented from EigenBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
Index internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::rows | ( | ) | const [inline] |
Reimplemented from EigenBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
Index internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::subs | ( | ) | const [inline] |
Reimplemented from internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
Index internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::supers | ( | ) | const [inline] |
Reimplemented from internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
CoefficientsType internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::m_coeffs [protected] |
internal::variable_if_dynamic<Index, Rows> internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::m_rows [protected] |
internal::variable_if_dynamic<Index, Subs> internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::m_subs [protected] |
internal::variable_if_dynamic<Index, Supers> internal::BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options >::m_supers [protected] |