Base class providing read/write coefficient access to matrices and arrays. More...
Public Types | |
typedef DenseCoeffsBase< Derived, ReadOnlyAccessors > | Base |
typedef internal::packet_traits< Scalar >::type | PacketScalar |
typedef NumTraits< Scalar >::Real | RealScalar |
typedef internal::traits< Derived >::Scalar | Scalar |
typedef internal::traits< Derived >::StorageKind | StorageKind |
![]() | |
typedef EigenBase< Derived > | Base |
typedef std::conditional_t< bool(internal::traits< Derived >::Flags &LvalueBit), const Scalar &, std::conditional_t< internal::is_arithmetic< Scalar >::value, Scalar, const Scalar > > | CoeffReturnType |
typedef internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits< Scalar >::type >::type | PacketReturnType |
typedef internal::packet_traits< Scalar >::type | PacketScalar |
typedef internal::traits< Derived >::Scalar | Scalar |
typedef internal::traits< Derived >::StorageKind | StorageKind |
![]() | |
typedef Eigen::Index | Index |
The interface type of indices. More... | |
typedef internal::traits< Derived >::StorageKind | StorageKind |
Additional Inherited Members | |
![]() | |
void | coeffRef () |
void | coeffRefByOuterInner () |
void | colStride () |
void | copyCoeff () |
void | copyCoeffByOuterInner () |
void | copyPacket () |
void | copyPacketByOuterInner () |
void | innerStride () |
void | outerStride () |
void | rowStride () |
void | stride () |
void | writePacket () |
void | writePacketByOuterInner () |
Base class providing read/write coefficient access to matrices and arrays.
Derived | Type of the derived class |
This class defines the non-const operator()
function and friends, which can be used to write specific entries of a matrix or array. This class inherits DenseCoeffsBase<Derived, ReadOnlyAccessors> which defines the const variant for reading specific entries.
Definition at line 304 of file DenseCoeffsBase.h.
typedef DenseCoeffsBase<Derived, ReadOnlyAccessors> Eigen::DenseCoeffsBase< Derived, WriteAccessors >::Base |
Definition at line 308 of file DenseCoeffsBase.h.
typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, WriteAccessors >::PacketScalar |
Definition at line 312 of file DenseCoeffsBase.h.
typedef NumTraits<Scalar>::Real Eigen::DenseCoeffsBase< Derived, WriteAccessors >::RealScalar |
Definition at line 313 of file DenseCoeffsBase.h.
typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, WriteAccessors >::Scalar |
Definition at line 311 of file DenseCoeffsBase.h.
typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, WriteAccessors >::StorageKind |
Definition at line 310 of file DenseCoeffsBase.h.
|
inline |
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).
Definition at line 391 of file DenseCoeffsBase.h.
|
inline |
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).
Definition at line 344 of file DenseCoeffsBase.h.
|
inline |
Definition at line 353 of file DenseCoeffsBase.h.
|
inline |
Definition at line 65 of file EigenBase.h.
|
inline |
Definition at line 48 of file EigenBase.h.
|
inline |
Definition at line 51 of file EigenBase.h.
|
inline |
This is synonymous to operator[](Index).
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
Definition at line 427 of file DenseCoeffsBase.h.
|
inline |
Definition at line 366 of file DenseCoeffsBase.h.
|
inline |
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
Definition at line 408 of file DenseCoeffsBase.h.
|
inline |
Definition at line 62 of file EigenBase.h.
|
inline |
|
inline |
equivalent to operator[](3).
Definition at line 463 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](0).
Definition at line 437 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](1).
Definition at line 443 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](2).
Definition at line 453 of file DenseCoeffsBase.h.