Shapeworks Studio  2.1
Shape analysis software suite
List of all members | Public Types | Public Member Functions | Protected Attributes
Eigen::Transpose< MatrixType > Class Template Reference

Expression of the transpose of a matrix. More...

#include <Transpose.h>

+ Inheritance diagram for Eigen::Transpose< MatrixType >:
+ Collaboration diagram for Eigen::Transpose< MatrixType >:

Public Types

typedef TransposeImpl< MatrixType, typename internal::traits< MatrixType >::StorageKind >::Base Base
 

Public Member Functions

 Transpose (MatrixType &a_matrix)
 
Index rows () const
 
Index cols () const
 
const internal::remove_all< typename MatrixType::Nested >::type & nestedExpression () const
 
internal::remove_all< typename MatrixType::Nested >::type & nestedExpression ()
 

Protected Attributes

MatrixType::Nested m_matrix
 

Detailed Description

template<typename MatrixType>
class Eigen::Transpose< MatrixType >

Expression of the transpose of a matrix.

Parameters
MatrixTypethe type of the object of which we are taking the transpose

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

See also
MatrixBase::transpose(), MatrixBase::adjoint()

Definition at line 57 of file Transpose.h.

Member Function Documentation

template<typename MatrixType>
const internal::remove_all<typename MatrixType::Nested>::type& Eigen::Transpose< MatrixType >::nestedExpression ( ) const
inline
Returns
the nested expression

Definition at line 74 of file Transpose.h.

74 { return m_matrix; }
template<typename MatrixType>
internal::remove_all<typename MatrixType::Nested>::type& Eigen::Transpose< MatrixType >::nestedExpression ( )
inline
Returns
the nested expression

Definition at line 78 of file Transpose.h.

78 { return m_matrix.const_cast_derived(); }

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