Eigen::Transpose< TranspositionsBase< TranspositionsDerived > > Class Template Reference

Public Member Functions

EIGEN_CONSTEXPR Index cols () const EIGEN_NOEXCEPT
 
const TranspositionTypenestedExpression () const
 
template<typename OtherDerived >
const Product< Transpose, OtherDerived, AliasFreeProductoperator* (const MatrixBase< OtherDerived > &matrix) const
 
EIGEN_CONSTEXPR Index rows () const EIGEN_NOEXCEPT
 
EIGEN_CONSTEXPR Index size () const EIGEN_NOEXCEPT
 
 Transpose (const TranspositionType &t)
 

Protected Attributes

const TranspositionTypem_transpositions
 

Private Types

typedef TranspositionType::IndicesType IndicesType
 
typedef TranspositionsDerived TranspositionType
 

Detailed Description

template<typename TranspositionsDerived>
class Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >

Definition at line 346 of file Transpositions.h.

Member Typedef Documentation

◆ IndicesType

template<typename TranspositionsDerived >
typedef TranspositionType::IndicesType Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::IndicesType
private

Definition at line 349 of file Transpositions.h.

◆ TranspositionType

template<typename TranspositionsDerived >
typedef TranspositionsDerived Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::TranspositionType
private

Definition at line 348 of file Transpositions.h.

Constructor & Destructor Documentation

◆ Transpose()

template<typename TranspositionsDerived >
Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::Transpose ( const TranspositionType t)
inlineexplicit

Definition at line 352 of file Transpositions.h.

Member Function Documentation

◆ cols()

template<typename TranspositionsDerived >
EIGEN_CONSTEXPR Index Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::cols ( void  ) const
inline

Definition at line 359 of file Transpositions.h.

359 { return m_transpositions.size(); }

◆ nestedExpression()

template<typename TranspositionsDerived >
const TranspositionType& Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::nestedExpression ( ) const
inline

Definition at line 380 of file Transpositions.h.

380 { return m_transpositions; }

◆ operator*()

template<typename TranspositionsDerived >
template<typename OtherDerived >
const Product<Transpose, OtherDerived, AliasFreeProduct> Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::operator* ( const MatrixBase< OtherDerived > &  matrix) const
inline
Returns
the matrix with the inverse transpositions applied to the rows.

Definition at line 374 of file Transpositions.h.

375  {
376  return Product<Transpose, OtherDerived, AliasFreeProduct>(*this, matrix.derived());
377  }

◆ rows()

template<typename TranspositionsDerived >
EIGEN_CONSTEXPR Index Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::rows ( void  ) const
inline

Definition at line 357 of file Transpositions.h.

357 { return m_transpositions.size(); }

◆ size()

template<typename TranspositionsDerived >
EIGEN_CONSTEXPR Index Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::size ( ) const
inline

Definition at line 355 of file Transpositions.h.

355 { return m_transpositions.size(); }

Member Data Documentation

◆ m_transpositions

template<typename TranspositionsDerived >
const TranspositionType& Eigen::Transpose< TranspositionsBase< TranspositionsDerived > >::m_transpositions
protected

Definition at line 383 of file Transpositions.h.


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