Base class providing direct read-only coefficient access to matrices and arrays.
| Derived | Type of the derived class |
| DirectAccessors | Constant indicating direct access |
This class defines functions to work with strides which can be used to access entries directly. This class inherits DenseCoeffsBase<Derived, ReadOnlyAccessors> which defines functions to access entries read-only using operator() .

Public Types | |
| typedef DenseCoeffsBase < Derived, ReadOnlyAccessors > | Base |
| typedef internal::traits < Derived >::Index | Index |
| typedef internal::traits < Derived >::Scalar | Scalar |
| typedef NumTraits< Scalar >::Real | RealScalar |
| typedef internal::traits < Derived >::StorageKind | StorageKind |
| 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 |
Public Member Functions | |
| Index | innerStride () const |
| Index | outerStride () const |
| Index | stride () const |
| Index | rowStride () const |
| Index | colStride () const |
| 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 | coeff (Index index) const |
| Short version: don't use this function, use operator[](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 | 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 | packet (Index index) const |
| template<int LoadMode> | |
| EIGEN_STRONG_INLINE PacketReturnType | packetByOuterInner (Index outer, Index inner) 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 DenseCoeffsBase<Derived, ReadOnlyAccessors> Eigen::DenseCoeffsBase< Derived, DirectAccessors >::Base |
Reimplemented from Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.
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 [inherited] |
Reimplemented from Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.
typedef internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits<Scalar>::type >::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketReturnType [inherited] |
typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketScalar [inherited] |
Reimplemented in Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
| typedef NumTraits<Scalar>::Real Eigen::DenseCoeffsBase< Derived, DirectAccessors >::RealScalar |
| typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, DirectAccessors >::Scalar |
Reimplemented from Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.
typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::StorageKind [inherited] |
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, inherited] |
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, inherited] |
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, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeffRef | ( | ) | [protected, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::coeffRefByOuterInner | ( | ) | [protected, inherited] |
| Index Eigen::EigenBase::cols | ( | ) | const [inline, inherited] |
Reimplemented in Eigen::SparseMatrixBase, Eigen::PermutationBase, and Eigen::TriangularBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::colStride | ( | ) | [protected, inherited] |
| Index Eigen::DenseCoeffsBase< Derived, DirectAccessors >::colStride | ( | ) | const [inline] |
| 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, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyCoeffByOuterInner | ( | ) | [protected, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyPacket | ( | ) | [protected, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::copyPacketByOuterInner | ( | ) | [protected, inherited] |
| 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, inherited] |
| Index Eigen::DenseCoeffsBase< Derived, DirectAccessors >::innerStride | ( | ) | const [inline] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::operator() | ( | Index | row, |
| Index | col | ||
| ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::operator() | ( | Index | index | ) | const [inline, inherited] |
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, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::outerStride | ( | ) | [protected, inherited] |
| Index Eigen::DenseCoeffsBase< Derived, DirectAccessors >::outerStride | ( | ) | const [inline] |
| EIGEN_STRONG_INLINE PacketReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::packet | ( | Index | row, |
| Index | col | ||
| ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE PacketReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::packet | ( | Index | index | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE PacketReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::packetByOuterInner | ( | Index | outer, |
| Index | inner | ||
| ) | const [inline, inherited] |
| Index Eigen::EigenBase::rows | ( | ) | const [inline, inherited] |
Reimplemented in Eigen::SparseMatrixBase, Eigen::PermutationBase, and Eigen::TriangularBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::rowStride | ( | ) | [protected, inherited] |
| Index Eigen::DenseCoeffsBase< Derived, DirectAccessors >::rowStride | ( | ) | const [inline] |
| Index Eigen::EigenBase::size | ( | ) | const [inline, inherited] |
Reimplemented in Eigen::SparseMatrixBase, and Eigen::PermutationBase.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::stride | ( | ) | [protected, inherited] |
| Index Eigen::DenseCoeffsBase< Derived, DirectAccessors >::stride | ( | ) | const [inline] |
| void Eigen::EigenBase::subTo | ( | Dest & | dst | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::w | ( | ) | const [inline, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::writePacket | ( | ) | [protected, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::writePacketByOuterInner | ( | ) | [protected, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::x | ( | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::y | ( | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::z | ( | ) | const [inline, inherited] |
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |