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. |

Public Types | |
| typedef internal::traits < BandMatrix >::Scalar | Scalar |
| typedef internal::traits < BandMatrix >::Index | Index |
| typedef internal::traits < BandMatrix > ::CoefficientsType | CoefficientsType |
| enum | |
| typedef Matrix< Scalar, RowsAtCompileTime, ColsAtCompileTime > | DenseMatrixType |
| typedef EigenBase< Derived > | Base |
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 () |
| Block< CoefficientsType, Dynamic, 1 > | col (Index i) |
| Block< CoefficientsType, 1, SizeAtCompileTime > | diagonal () |
| const Block< const CoefficientsType, 1, SizeAtCompileTime > | diagonal () const |
| DiagonalIntReturnType< N >::Type | diagonal () |
| const DiagonalIntReturnType< N > ::Type | diagonal () const |
| Block< CoefficientsType, 1, Dynamic > | diagonal (Index i) |
| const Block< const CoefficientsType, 1, Dynamic > | diagonal (Index i) const |
| void | evalTo (Dest &dst) const |
| DenseMatrixType | toDenseMatrix () const |
Protected Types | |
| enum | |
Protected Member Functions | |
| Index | diagonalLength (Index i) const |
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 |
typedef EigenBase<Derived> Eigen::internal::BandMatrixBase::Base [inherited] |
| typedef internal::traits<BandMatrix>::CoefficientsType Eigen::internal::BandMatrix::CoefficientsType |
typedef Matrix<Scalar,RowsAtCompileTime,ColsAtCompileTime> Eigen::internal::BandMatrixBase::DenseMatrixType [inherited] |
| typedef internal::traits<BandMatrix>::Index Eigen::internal::BandMatrix::Index |
Reimplemented from Eigen::internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
Reimplemented in Eigen::internal::TridiagonalMatrix.
| typedef internal::traits<BandMatrix>::Scalar Eigen::internal::BandMatrix::Scalar |
| const CoefficientsType& Eigen::internal::BandMatrix::coeffs | ( | ) | const [inline] |
Reimplemented from Eigen::internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
| CoefficientsType& Eigen::internal::BandMatrix::coeffs | ( | ) | [inline] |
Reimplemented from Eigen::internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
| Block<CoefficientsType,Dynamic,1> Eigen::internal::BandMatrixBase::col | ( | Index | i | ) | [inline, inherited] |
| Index Eigen::internal::BandMatrix::cols | ( | void | ) | const [inline] |
| Block<CoefficientsType,1,SizeAtCompileTime> Eigen::internal::BandMatrixBase::diagonal | ( | ) | [inline, inherited] |
| const Block<const CoefficientsType,1,SizeAtCompileTime> Eigen::internal::BandMatrixBase::diagonal | ( | ) | const [inline, inherited] |
| DiagonalIntReturnType<N>::Type Eigen::internal::BandMatrixBase::diagonal | ( | ) | [inline, inherited] |
| const DiagonalIntReturnType<N>::Type Eigen::internal::BandMatrixBase::diagonal | ( | ) | const [inline, inherited] |
| Block<CoefficientsType,1,Dynamic> Eigen::internal::BandMatrixBase::diagonal | ( | Index | i | ) | [inline, inherited] |
| const Block<const CoefficientsType,1,Dynamic> Eigen::internal::BandMatrixBase::diagonal | ( | Index | i | ) | const [inline, inherited] |
| void Eigen::internal::BandMatrixBase::evalTo | ( | Dest & | dst | ) | const [inline, inherited] |
| Index Eigen::internal::BandMatrix::rows | ( | void | ) | const [inline] |
| Index Eigen::internal::BandMatrix::subs | ( | ) | const [inline] |
Reimplemented from Eigen::internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
| Index Eigen::internal::BandMatrix::supers | ( | ) | const [inline] |
Reimplemented from Eigen::internal::BandMatrixBase< BandMatrix< _Scalar, Rows, Cols, Supers, Subs, Options > >.
| DenseMatrixType Eigen::internal::BandMatrixBase::toDenseMatrix | ( | ) | const [inline, inherited] |
internal::variable_if_dynamic<Index, Rows> Eigen::internal::BandMatrix::m_rows [protected] |
internal::variable_if_dynamic<Index, Subs> Eigen::internal::BandMatrix::m_subs [protected] |
internal::variable_if_dynamic<Index, Supers> Eigen::internal::BandMatrix::m_supers [protected] |
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |