Base class providing read-only coefficient access to matrices and arrays.
| Derived | Type of the derived class |
| ReadOnlyAccessors | Constant indicating read-only access |
This class defines the operator() const function and friends, which can be used to read specific entries of a matrix or array.

Public Types | |
| typedef internal::traits < Derived >::StorageKind | StorageKind |
| typedef internal::traits < Derived >::Index | Index |
| typedef internal::traits < Derived >::Scalar | Scalar |
| typedef internal::packet_traits < Scalar >::type | PacketScalar |
| typedef internal::conditional < bool(internal::traits < Derived >::Flags &LvalueBit), const Scalar &, typename internal::conditional < internal::is_arithmetic < Scalar >::value, Scalar, const Scalar >::type >::type | CoeffReturnType |
| typedef internal::add_const_on_value_type_if_arithmetic < typename internal::packet_traits < Scalar >::type >::type | PacketReturnType |
| typedef EigenBase< Derived > | Base |
Public Member Functions | |
| EIGEN_STRONG_INLINE Index | rowIndexByOuterInner (Index outer, Index inner) const |
| EIGEN_STRONG_INLINE Index | colIndexByOuterInner (Index outer, Index inner) const |
| EIGEN_STRONG_INLINE CoeffReturnType | coeff (Index row, Index col) const |
| Short version: don't use this function, use operator()(Index,Index) const instead. | |
| EIGEN_STRONG_INLINE CoeffReturnType | coeffByOuterInner (Index outer, Index inner) const |
| EIGEN_STRONG_INLINE CoeffReturnType | operator() (Index row, Index col) const |
| EIGEN_STRONG_INLINE CoeffReturnType | coeff (Index index) const |
| Short version: don't use this function, use operator[](Index) const instead. | |
| EIGEN_STRONG_INLINE CoeffReturnType | operator[] (Index index) const |
| EIGEN_STRONG_INLINE CoeffReturnType | operator() (Index index) const |
| EIGEN_STRONG_INLINE CoeffReturnType | x () const |
| equivalent to operator[](0). | |
| EIGEN_STRONG_INLINE CoeffReturnType | y () const |
| equivalent to operator[](1). | |
| EIGEN_STRONG_INLINE CoeffReturnType | z () const |
| equivalent to operator[](2). | |
| EIGEN_STRONG_INLINE CoeffReturnType | w () const |
| equivalent to operator[](3). | |
| template<int LoadMode> | |
| EIGEN_STRONG_INLINE PacketReturnType | packet (Index row, Index col) const |
| template<int LoadMode> | |
| EIGEN_STRONG_INLINE PacketReturnType | packetByOuterInner (Index outer, Index inner) const |
| template<int LoadMode> | |
| EIGEN_STRONG_INLINE PacketReturnType | packet (Index index) const |
| Derived & | derived () |
| const Derived & | derived () const |
| Derived & | const_cast_derived () const |
| const Derived & | const_derived () const |
| Index | rows () const |
| Index | cols () const |
| Index | size () const |
| void | evalTo (Dest &dst) const |
| void | addTo (Dest &dst) const |
| void | subTo (Dest &dst) const |
| void | applyThisOnTheRight (Dest &dst) const |
| void | applyThisOnTheLeft (Dest &dst) const |
Protected Member Functions | |
| void | coeffRef () |
| void | coeffRefByOuterInner () |
| void | writePacket () |
| void | writePacketByOuterInner () |
| void | copyCoeff () |
| void | copyCoeffByOuterInner () |
| void | copyPacket () |
| void | copyPacketByOuterInner () |
| void | stride () |
| void | innerStride () |
| void | outerStride () |
| void | rowStride () |
| void | colStride () |
| typedef internal::conditional<bool(internal::traits<Derived>::Flags&LvalueBit), const Scalar&, typename internal::conditional<internal::is_arithmetic<Scalar>::value, Scalar, const Scalar>::type >::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::CoeffReturnType |
| typedef internal::traits<Derived>::Index Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::Index |
Reimplemented from Eigen::EigenBase< Derived >.
Reimplemented in Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >, Eigen::DenseCoeffsBase< Derived, DirectAccessors >, and Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
| typedef internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits<Scalar>::type >::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketReturnType |
| typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketScalar |
Reimplemented in Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
| typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::Scalar |
| typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::StorageKind |
Reimplemented from Eigen::EigenBase< Derived >.
Reimplemented in Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
| void Eigen::EigenBase::addTo | ( | Dest & | dst | ) | const [inline, inherited] |
| void Eigen::EigenBase::applyThisOnTheLeft | ( | Dest & | dst | ) | const [inline, inherited] |
| void Eigen::EigenBase::applyThisOnTheRight | ( | Dest & | dst | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeff | ( | Index | row, |
| Index | col | ||
| ) | const [inline] |
Short version: don't use this function, use operator()(Index,Index) const instead.
Long version: this function is similar to operator()(Index,Index) const , but without the assertion. Use this for limiting the performance cost of debugging code when doing repeated coefficient access. Only use this when it is guaranteed that the parameters row and col are in range.
If EIGEN_INTERNAL_DEBUGGING is defined, an assertion will be made, making this function equivalent to operator()(Index,Index) const .
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeff | ( | Index | index | ) | const [inline] |
Short version: don't use this function, use operator[](Index) const instead.
Long version: this function is similar to operator[](Index) const , but without the assertion. Use this for limiting the performance cost of debugging code when doing repeated coefficient access. Only use this when it is guaranteed that the parameter index is in range.
If EIGEN_INTERNAL_DEBUGGING is defined, an assertion will be made, making this function equivalent to operator[](Index) const .
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeffByOuterInner | ( | Index | outer, |
| Index | inner | ||
| ) | const [inline] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeffRef | ( | ) | [protected] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeffRefByOuterInner | ( | ) | [protected] |
| Index Eigen::EigenBase::cols | ( | ) | const [inline, inherited] |
Reimplemented in Eigen::SparseMatrixBase, Eigen::PermutationBase, and Eigen::TriangularBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::colStride | ( | ) | [protected] |
| Derived& Eigen::EigenBase::const_cast_derived | ( | ) | const [inline, inherited] |
| const Derived& Eigen::EigenBase::const_derived | ( | ) | const [inline, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyCoeff | ( | ) | [protected] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyCoeffByOuterInner | ( | ) | [protected] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyPacket | ( | ) | [protected] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyPacketByOuterInner | ( | ) | [protected] |
| Derived& Eigen::EigenBase::derived | ( | ) | [inline, inherited] |
| const Derived& Eigen::EigenBase::derived | ( | ) | const [inline, inherited] |
| void Eigen::EigenBase::evalTo | ( | Dest & | dst | ) | const [inline, inherited] |
Reimplemented in Eigen::internal::BandMatrixBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::innerStride | ( | ) | [protected] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::operator() | ( | Index | row, |
| Index | col | ||
| ) | const [inline] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::operator() | ( | Index | index | ) | const [inline] |
This is synonymous to operator[](Index) const.
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::operator[] | ( | Index | index | ) | const [inline] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::outerStride | ( | ) | [protected] |
| EIGEN_STRONG_INLINE PacketReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::packet | ( | Index | row, |
| Index | col | ||
| ) | const [inline] |
| EIGEN_STRONG_INLINE PacketReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::packet | ( | Index | index | ) | const [inline] |
| EIGEN_STRONG_INLINE PacketReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::packetByOuterInner | ( | Index | outer, |
| Index | inner | ||
| ) | const [inline] |
| Index Eigen::EigenBase::rows | ( | ) | const [inline, inherited] |
Reimplemented in Eigen::SparseMatrixBase, Eigen::PermutationBase, and Eigen::TriangularBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::rowStride | ( | ) | [protected] |
| Index Eigen::EigenBase::size | ( | ) | const [inline, inherited] |
Reimplemented in Eigen::SparseMatrixBase, and Eigen::PermutationBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::stride | ( | ) | [protected] |
| void Eigen::EigenBase::subTo | ( | Dest & | dst | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::w | ( | ) | const [inline] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::writePacket | ( | ) | [protected] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::writePacketByOuterInner | ( | ) | [protected] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::x | ( | ) | const [inline] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::y | ( | ) | const [inline] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::z | ( | ) | const [inline] |
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |