|
TR-mbed 1.0
|
Base class providing read-only coefficient access to matrices and arrays. More...
#include <DenseCoeffsBase.h>
Public Types | |
| typedef internal::traits< Derived >::StorageKind | StorageKind |
| typedef internal::traits< Derived >::Scalar | Scalar |
| typedef internal::packet_traits< Scalar >::type | PacketScalar |
| typedef internal::conditional< bool(internal::traits< Derived >::Flags &LvalueBit), constScalar &, typenameinternal::conditional< internal::is_arithmetic< Scalar >::value, Scalar, constScalar >::type >::type | CoeffReturnType |
| typedef internal::add_const_on_value_type_if_arithmetic< typenameinternal::packet_traits< Scalar >::type >::type | PacketReturnType |
| typedef EigenBase< Derived > | Base |
Public Types inherited from Eigen::EigenBase< Derived > | |
| typedef Eigen::Index | Index |
| The interface type of indices. | |
| typedef internal::traits< Derived >::StorageKind | StorageKind |
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 () |
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.
| typedef EigenBase<Derived> Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::Base |
| typedef internal::conditional<bool(internal::traits<Derived>::Flags&LvalueBit),constScalar&,typenameinternal::conditional<internal::is_arithmetic<Scalar>::value,Scalar,constScalar>::type>::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::CoeffReturnType |
| typedef internal::add_const_on_value_type_if_arithmetic<typenameinternal::packet_traits<Scalar>::type>::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketReturnType |
| typedef internal::packet_traits<Scalar>::type Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::PacketScalar |
| typedef internal::traits<Derived>::Scalar Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::Scalar |
| typedef internal::traits<Derived>::StorageKind Eigen::DenseCoeffsBase< Derived, ReadOnlyAccessors >::StorageKind |
|
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 .
|
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 .
|
inline |
|
protected |
|
protected |
|
inline |
|
inline |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
inline |
|
inline |
|
protected |
|
inline |
This is synonymous to operator[](Index) const.
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
|
inline |
|
inline |
This method is allowed only for vector expressions, and for matrix expressions having the LinearAccessBit.
|
protected |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
protected |
|
inline |
|
protected |
|
inline |
equivalent to operator[](3).
|
protected |
|
protected |
|
inline |
equivalent to operator[](0).
|
inline |
equivalent to operator[](1).
|
inline |
equivalent to operator[](2).