Base class providing direct read/write coefficient access to matrices and arrays.
More...
|
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | colStride () const EIGEN_NOEXCEPT |
|
Derived & | derived () |
|
const Derived & | derived () const |
|
EIGEN_CONSTEXPR Index | innerStride () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | outerStride () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | rowStride () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | stride () const EIGEN_NOEXCEPT |
|
Scalar & | coeffRef (Index index) |
|
Scalar & | coeffRef (Index row, Index col) |
|
Scalar & | coeffRefByOuterInner (Index outer, Index inner) |
|
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
|
Derived & | derived () |
|
const Derived & | derived () const |
|
Scalar & | operator() (Index index) |
|
Scalar & | operator() (Index row, Index col) |
|
Scalar & | operator[] (Index index) |
|
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
|
EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
|
Scalar & | w () |
|
Scalar & | x () |
|
Scalar & | y () |
|
Scalar & | z () |
|
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 |
|
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 |
|
template<typename Derived>
class Eigen::DenseCoeffsBase< Derived, DirectWriteAccessors >
Base class providing direct read/write coefficient access to matrices and arrays.
- Template Parameters
-
Derived | Type of the derived class |
- Note
- 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()
.
- See also
- The class hierarchy
Definition at line 557 of file DenseCoeffsBase.h.