Base class providing read/write coefficient access to matrices and arrays. More...
#include <DenseCoeffsBase.h>
Additional Inherited Members | |
Protected Member Functions inherited from Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors > | |
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 302 of file DenseCoeffsBase.h.
typedef DenseCoeffsBase<Derived, ReadOnlyAccessors> Eigen::DenseCoeffsBase< Derived, WriteAccessors >::Base |
Definition at line 306 of file DenseCoeffsBase.h.
typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, WriteAccessors >::PacketScalar |
Definition at line 310 of file DenseCoeffsBase.h.
typedef NumTraits<Scalar>::Real Eigen::DenseCoeffsBase< Derived, WriteAccessors >::RealScalar |
Definition at line 311 of file DenseCoeffsBase.h.
typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, WriteAccessors >::Scalar |
Definition at line 309 of file DenseCoeffsBase.h.
typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, WriteAccessors >::StorageKind |
Definition at line 308 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 389 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 342 of file DenseCoeffsBase.h.
|
inline |
Definition at line 351 of file DenseCoeffsBase.h.
|
inline |
Definition at line 63 of file EigenBase.h.
|
inline |
Definition at line 46 of file EigenBase.h.
|
inline |
Definition at line 49 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 425 of file DenseCoeffsBase.h.
|
inline |
Definition at line 364 of file DenseCoeffsBase.h.
|
inline |
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
Definition at line 406 of file DenseCoeffsBase.h.
|
inline |
Definition at line 60 of file EigenBase.h.
|
inline |
Definition at line 67 of file EigenBase.h.
|
inline |
equivalent to operator[](3).
Definition at line 461 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](0).
Definition at line 435 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](1).
Definition at line 441 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](2).
Definition at line 451 of file DenseCoeffsBase.h.