Base class providing direct read/write coefficient access to matrices and arrays.
| Derived | Type of the derived class |
| DirectWriteAccessors | 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, WriteAccessors> which defines functions to access entries read/write using operator().

Public Types | |
| typedef DenseCoeffsBase < Derived, WriteAccessors > | 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 Scalar & | coeffRef (Index row, Index col) |
| Short version: don't use this function, use operator()(Index,Index) instead. | |
| EIGEN_STRONG_INLINE Scalar & | coeffRef (Index index) |
| Short version: don't use this function, use operator[](Index) instead. | |
| EIGEN_STRONG_INLINE Scalar & | coeffRefByOuterInner (Index outer, Index inner) |
| EIGEN_STRONG_INLINE Scalar & | operator() (Index row, Index col) |
| EIGEN_STRONG_INLINE Scalar & | operator() (Index index) |
| EIGEN_STRONG_INLINE CoeffReturnType | operator() (Index row, Index col) const |
| EIGEN_STRONG_INLINE CoeffReturnType | operator() (Index index) const |
| EIGEN_STRONG_INLINE Scalar & | operator[] (Index index) |
| EIGEN_STRONG_INLINE CoeffReturnType | operator[] (Index index) const |
| EIGEN_STRONG_INLINE Scalar & | x () |
| equivalent to operator[](0). | |
| EIGEN_STRONG_INLINE CoeffReturnType | x () const |
| equivalent to operator[](0). | |
| EIGEN_STRONG_INLINE Scalar & | y () |
| equivalent to operator[](1). | |
| EIGEN_STRONG_INLINE CoeffReturnType | y () const |
| equivalent to operator[](1). | |
| EIGEN_STRONG_INLINE Scalar & | z () |
| equivalent to operator[](2). | |
| EIGEN_STRONG_INLINE CoeffReturnType | z () const |
| equivalent to operator[](2). | |
| EIGEN_STRONG_INLINE Scalar & | w () |
| equivalent to operator[](3). | |
| EIGEN_STRONG_INLINE CoeffReturnType | w () const |
| equivalent to operator[](3). | |
| template<int StoreMode> | |
| EIGEN_STRONG_INLINE void | writePacket (Index row, Index col, const typename internal::packet_traits< Scalar >::type &x) |
| template<int StoreMode> | |
| EIGEN_STRONG_INLINE void | writePacket (Index index, const typename internal::packet_traits< Scalar >::type &x) |
| template<int StoreMode> | |
| EIGEN_STRONG_INLINE void | writePacketByOuterInner (Index outer, Index inner, const typename internal::packet_traits< Scalar >::type &x) |
| 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 |
| 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, WriteAccessors> Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >::Base |
Reimplemented from Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
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] |
| typedef internal::traits<Derived>::Index Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >::Index |
Reimplemented from 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 [inherited] |
typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, WriteAccessors >::PacketScalar [inherited] |
Reimplemented from Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.
| typedef NumTraits<Scalar>::Real Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >::RealScalar |
Reimplemented from Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
| typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >::Scalar |
Reimplemented from Eigen::DenseCoeffsBase< Derived, WriteAccessors >.
typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, WriteAccessors >::StorageKind [inherited] |
Reimplemented from Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >.
| 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] |
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::coeffRef | ( | Index | row, |
| Index | col | ||
| ) | [inline, inherited] |
Short version: don't use this function, use operator()(Index,Index) instead.
Long version: this function is similar to operator()(Index,Index), 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).
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::coeffRef | ( | Index | index | ) | [inline, inherited] |
Short version: don't use this function, use operator[](Index) instead.
Long version: this function is similar to operator[](Index), 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).
| 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, DirectWriteAccessors >::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, DirectWriteAccessors >::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 Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::operator() | ( | Index | row, |
| Index | col | ||
| ) | [inline, inherited] |
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::operator() | ( | Index | index | ) | [inline, inherited] |
This is synonymous to operator[](Index).
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] |
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::operator[] | ( | Index | index | ) | [inline, inherited] |
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::outerStride | ( | ) | [protected, inherited] |
| Index Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >::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, DirectWriteAccessors >::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, DirectWriteAccessors >::stride | ( | ) | const [inline] |
| void Eigen::EigenBase::subTo | ( | Dest & | dst | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::w | ( | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::w | ( | ) | [inline, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::writePacket | ( | ) | [protected, inherited] |
| EIGEN_STRONG_INLINE void Eigen::DenseCoeffsBase< Derived, WriteAccessors >::writePacket | ( | Index | row, |
| Index | col, | ||
| const typename internal::packet_traits< Scalar >::type & | x | ||
| ) | [inline, inherited] |
| EIGEN_STRONG_INLINE void Eigen::DenseCoeffsBase< Derived, WriteAccessors >::writePacket | ( | Index | index, |
| const typename internal::packet_traits< Scalar >::type & | x | ||
| ) | [inline, inherited] |
| void Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::writePacketByOuterInner | ( | ) | [protected, inherited] |
| EIGEN_STRONG_INLINE void Eigen::DenseCoeffsBase< Derived, WriteAccessors >::writePacketByOuterInner | ( | Index | outer, |
| Index | inner, | ||
| const typename internal::packet_traits< Scalar >::type & | x | ||
| ) | [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::x | ( | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::x | ( | ) | [inline, inherited] |
| EIGEN_STRONG_INLINE CoeffReturnType Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::y | ( | ) | const [inline, inherited] |
| EIGEN_STRONG_INLINE Scalar& Eigen::DenseCoeffsBase< Derived, WriteAccessors >::y | ( | ) | [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 |