Base class providing read-only coefficient access to matrices and arrays. More...
Public Types | |
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 |
Public Types inherited from Eigen::EigenBase< Derived > | |
typedef Eigen::Index | Index |
The interface type of indices. More... | |
typedef internal::traits< Derived >::StorageKind | StorageKind |
Public Member Functions | |
CoeffReturnType | coeff (Index index) const |
CoeffReturnType | coeff (Index row, Index col) const |
CoeffReturnType | coeffByOuterInner (Index outer, Index inner) const |
Index | colIndexByOuterInner (Index outer, Index inner) const |
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
Derived & | derived () |
const Derived & | derived () const |
CoeffReturnType | operator() (Index index) const |
CoeffReturnType | operator() (Index row, Index col) const |
CoeffReturnType | operator[] (Index index) const |
template<int LoadMode> | |
PacketReturnType | packet (Index index) const |
template<int LoadMode> | |
PacketReturnType | packet (Index row, Index col) const |
template<int LoadMode> | |
PacketReturnType | packetByOuterInner (Index outer, Index inner) const |
Index | rowIndexByOuterInner (Index outer, Index inner) const |
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
CoeffReturnType | w () const |
CoeffReturnType | x () const |
CoeffReturnType | y () const |
CoeffReturnType | z () const |
Public Member Functions inherited from Eigen::EigenBase< Derived > | |
template<typename Dest > | |
void | addTo (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheLeft (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheRight (Dest &dst) const |
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
Derived & | const_cast_derived () const |
const Derived & | const_derived () const |
Derived & | derived () |
const Derived & | derived () const |
template<typename Dest > | |
void | evalTo (Dest &dst) const |
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
template<typename Dest > | |
void | subTo (Dest &dst) const |
Protected Member Functions | |
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-only coefficient access to matrices and arrays.
Derived | Type of the derived class |
This class defines the operator()
const
function and friends, which can be used to read specific entries of a matrix or array.
Definition at line 37 of file DenseCoeffsBase.h.
typedef EigenBase<Derived> Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::Base |
Definition at line 60 of file DenseCoeffsBase.h.
typedef std::conditional_t<bool(internal::traits<Derived>::Flags&LvalueBit), const Scalar&, std::conditional_t<internal::is_arithmetic<Scalar>::value, Scalar, const Scalar> > Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::CoeffReturnType |
Definition at line 54 of file DenseCoeffsBase.h.
typedef internal::add_const_on_value_type_if_arithmetic< typename internal::packet_traits<Scalar>::type >::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketReturnType |
Definition at line 58 of file DenseCoeffsBase.h.
typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketScalar |
Definition at line 42 of file DenseCoeffsBase.h.
typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::Scalar |
Definition at line 41 of file DenseCoeffsBase.h.
typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::StorageKind |
Definition at line 40 of file DenseCoeffsBase.h.
|
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 .
Definition at line 142 of file DenseCoeffsBase.h.
|
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 .
Definition at line 99 of file DenseCoeffsBase.h.
|
inline |
Definition at line 107 of file DenseCoeffsBase.h.
|
protected |
|
protected |
|
inline |
Definition at line 76 of file DenseCoeffsBase.h.
|
inline |
Definition at line 65 of file EigenBase.h.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
inline |
Definition at line 48 of file EigenBase.h.
|
inline |
Definition at line 51 of file EigenBase.h.
|
protected |
|
inline |
This is synonymous to operator[](Index) const.
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
Definition at line 181 of file DenseCoeffsBase.h.
|
inline |
|
inline |
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
Definition at line 161 of file DenseCoeffsBase.h.
|
protected |
|
inline |
Definition at line 261 of file DenseCoeffsBase.h.
|
inline |
Definition at line 234 of file DenseCoeffsBase.h.
|
inline |
Definition at line 244 of file DenseCoeffsBase.h.
|
inline |
Definition at line 67 of file DenseCoeffsBase.h.
|
inline |
Definition at line 62 of file EigenBase.h.
|
protected |
|
inline |
|
protected |
|
inline |
equivalent to operator[](3).
Definition at line 217 of file DenseCoeffsBase.h.
|
protected |
|
protected |
|
inline |
equivalent to operator[](0).
Definition at line 191 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](1).
Definition at line 197 of file DenseCoeffsBase.h.
|
inline |
equivalent to operator[](2).
Definition at line 207 of file DenseCoeffsBase.h.