WPILibC++ 2023.4.3-108-ge5452e3
Eigen::Reverse< MatrixType, Direction > Class Template Reference

Expression of the reverse of a vector or matrix. More...

#include </home/runner/work/allwpilib/allwpilib/wpimath/src/main/native/thirdparty/eigen/include/Eigen/src/Core/Reverse.h>

Inheritance diagram for Eigen::Reverse< MatrixType, Direction >:

Public Types

typedef internal::dense_xpr_base< Reverse >::type Base
 
typedef internal::remove_all< MatrixType >::type NestedExpression
 

Public Member Functions

EIGEN_DEVICE_FUNC Reverse (const MatrixType &matrix)
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows () const EIGEN_NOEXCEPT
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index cols () const EIGEN_NOEXCEPT
 
EIGEN_DEVICE_FUNC Index innerStride () const
 
EIGEN_DEVICE_FUNC const internal::remove_all< typenameMatrixType::Nested >::typenestedExpression () const
 

Protected Types

enum  {
  PacketSize = internal::packet_traits<Scalar>::size , IsColMajor = !IsRowMajor , ReverseRow = (Direction == Vertical) || (Direction == BothDirections) , ReverseCol = (Direction == Horizontal) || (Direction == BothDirections) ,
  OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1 , OffsetCol = ReverseCol && IsRowMajor ? PacketSize : 1 , ReversePacket
}
 
typedef internal::reverse_packet_cond< PacketScalar, ReversePacketreverse_packet
 

Protected Attributes

MatrixType::Nested m_matrix
 

Detailed Description

template<typename MatrixType, int Direction>
class Eigen::Reverse< MatrixType, Direction >

Expression of the reverse of a vector or matrix.

Template Parameters
MatrixTypethe type of the object of which we are taking the reverse
Directiondefines the direction of the reverse operation, can be Vertical, Horizontal, or BothDirections

This class represents an expression of the reverse of a vector. It is the return type of MatrixBase::reverse() and VectorwiseOp::reverse() and most of the time this is the only way it is used.

See also
MatrixBase::reverse(), VectorwiseOp::reverse()

Member Typedef Documentation

◆ Base

template<typename MatrixType , int Direction>
typedef internal::dense_xpr_base<Reverse>::type Eigen::Reverse< MatrixType, Direction >::Base

◆ NestedExpression

template<typename MatrixType , int Direction>
typedef internal::remove_all<MatrixType>::type Eigen::Reverse< MatrixType, Direction >::NestedExpression

◆ reverse_packet

template<typename MatrixType , int Direction>
typedef internal::reverse_packet_cond<PacketScalar,ReversePacket> Eigen::Reverse< MatrixType, Direction >::reverse_packet
protected

Member Enumeration Documentation

◆ anonymous enum

template<typename MatrixType , int Direction>
anonymous enum
protected
Enumerator
PacketSize 
IsColMajor 
ReverseRow 
ReverseCol 
OffsetRow 
OffsetCol 
ReversePacket 

Constructor & Destructor Documentation

◆ Reverse()

template<typename MatrixType , int Direction>
EIGEN_DEVICE_FUNC Eigen::Reverse< MatrixType, Direction >::Reverse ( const MatrixType &  matrix)
inlineexplicit

Member Function Documentation

◆ cols()

template<typename MatrixType , int Direction>
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index Eigen::Reverse< MatrixType, Direction >::cols ( void  ) const
inline

◆ innerStride()

template<typename MatrixType , int Direction>
EIGEN_DEVICE_FUNC Index Eigen::Reverse< MatrixType, Direction >::innerStride ( ) const
inline

◆ nestedExpression()

template<typename MatrixType , int Direction>
EIGEN_DEVICE_FUNC const internal::remove_all< typenameMatrixType::Nested >::type & Eigen::Reverse< MatrixType, Direction >::nestedExpression ( ) const
inline

◆ rows()

template<typename MatrixType , int Direction>
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index Eigen::Reverse< MatrixType, Direction >::rows ( void  ) const
inline

Member Data Documentation

◆ m_matrix

template<typename MatrixType , int Direction>
MatrixType::Nested Eigen::Reverse< MatrixType, Direction >::m_matrix
protected

The documentation for this class was generated from the following files: