MOAB
4.9.3pre
|
Expression of the transpose of a matrix. More...
#include <Transpose.h>
Public Types | |
typedef internal::ref_selector < MatrixType >::non_const_type | MatrixTypeNested |
typedef TransposeImpl < MatrixType, typename internal::traits< MatrixType > ::StorageKind >::Base | Base |
typedef internal::remove_all < MatrixType >::type | NestedExpression |
Public Member Functions | |
EIGEN_DEVICE_FUNC | Transpose (MatrixType &matrix) |
EIGEN_DEVICE_FUNC Index | rows () const |
EIGEN_DEVICE_FUNC Index | cols () const |
EIGEN_DEVICE_FUNC const internal::remove_all < MatrixTypeNested >::type & | nestedExpression () const |
EIGEN_DEVICE_FUNC internal::remove_reference < MatrixTypeNested >::type & | nestedExpression () |
Protected Attributes | |
internal::ref_selector < MatrixType >::non_const_type | m_matrix |
Expression of the transpose of a matrix.
MatrixType | the 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.
Definition at line 52 of file Transpose.h.
typedef TransposeImpl<MatrixType,typename internal::traits<MatrixType>::StorageKind>::Base Eigen::Transpose< MatrixType >::Base |
Reimplemented from Eigen::TransposeImpl< MatrixType, internal::traits< MatrixType >::StorageKind >.
Definition at line 59 of file Transpose.h.
typedef internal::ref_selector<MatrixType>::non_const_type Eigen::Transpose< MatrixType >::MatrixTypeNested |
Definition at line 57 of file Transpose.h.
typedef internal::remove_all<MatrixType>::type Eigen::Transpose< MatrixType >::NestedExpression |
Definition at line 61 of file Transpose.h.
EIGEN_DEVICE_FUNC Eigen::Transpose< MatrixType >::Transpose | ( | MatrixType & | matrix | ) | [inline, explicit] |
Definition at line 64 of file Transpose.h.
: m_matrix(matrix) {}
EIGEN_DEVICE_FUNC Index Eigen::Transpose< MatrixType >::cols | ( | void | ) | const [inline] |
Definition at line 69 of file Transpose.h.
{ return m_matrix.rows(); }
EIGEN_DEVICE_FUNC const internal::remove_all<MatrixTypeNested>::type& Eigen::Transpose< MatrixType >::nestedExpression | ( | ) | const [inline] |
EIGEN_DEVICE_FUNC internal::remove_reference<MatrixTypeNested>::type& Eigen::Transpose< MatrixType >::nestedExpression | ( | ) | [inline] |
EIGEN_DEVICE_FUNC Index Eigen::Transpose< MatrixType >::rows | ( | void | ) | const [inline] |
Definition at line 68 of file Transpose.h.
{ return m_matrix.cols(); }
internal::ref_selector<MatrixType>::non_const_type Eigen::Transpose< MatrixType >::m_matrix [protected] |
Definition at line 82 of file Transpose.h.