MOAB  4.9.3pre
Eigen::internal::image_retval_base< _DecompositionType > Class Template Reference

#include <Image.h>

Inheritance diagram for Eigen::internal::image_retval_base< _DecompositionType >:
Collaboration diagram for Eigen::internal::image_retval_base< _DecompositionType >:

List of all members.

Public Types

typedef _DecompositionType DecompositionType
typedef
DecompositionType::MatrixType 
MatrixType
typedef ReturnByValue
< image_retval_base
Base

Public Member Functions

 image_retval_base (const DecompositionType &dec, const MatrixType &p_originalMatrix)
Index rows () const
Index cols () const
Index rank () const
const DecompositionTypedec () const
const MatrixTypeoriginalMatrix () const
template<typename Dest >
void evalTo (Dest &dst) const

Protected Attributes

const DecompositionTypem_dec
Index m_rank
Index m_cols
const MatrixTypem_originalMatrix

Detailed Description

template<typename _DecompositionType>
class Eigen::internal::image_retval_base< _DecompositionType >

Definition at line 35 of file Image.h.


Member Typedef Documentation

template<typename _DecompositionType>
typedef ReturnByValue<image_retval_base> Eigen::internal::image_retval_base< _DecompositionType >::Base

Reimplemented from Eigen::ReturnByValue< image_retval_base< _DecompositionType > >.

Definition at line 40 of file Image.h.

template<typename _DecompositionType>
typedef _DecompositionType Eigen::internal::image_retval_base< _DecompositionType >::DecompositionType

Definition at line 38 of file Image.h.

template<typename _DecompositionType>
typedef DecompositionType::MatrixType Eigen::internal::image_retval_base< _DecompositionType >::MatrixType

Definition at line 39 of file Image.h.


Constructor & Destructor Documentation

template<typename _DecompositionType>
Eigen::internal::image_retval_base< _DecompositionType >::image_retval_base ( const DecompositionType dec,
const MatrixType p_originalMatrix 
) [inline]

Definition at line 42 of file Image.h.

    : m_dec(dec), m_rank(dec.rank()),
      m_cols(m_rank == 0 ? 1 : m_rank),
      m_originalMatrix(p_originalMatrix)
  {}

Member Function Documentation

template<typename _DecompositionType>
Index Eigen::internal::image_retval_base< _DecompositionType >::cols ( void  ) const [inline]

Reimplemented from Eigen::ReturnByValue< image_retval_base< _DecompositionType > >.

Definition at line 49 of file Image.h.

{ return m_cols; }
template<typename _DecompositionType>
const DecompositionType& Eigen::internal::image_retval_base< _DecompositionType >::dec ( ) const [inline]

Definition at line 51 of file Image.h.

{ return m_dec; }
template<typename _DecompositionType>
template<typename Dest >
void Eigen::internal::image_retval_base< _DecompositionType >::evalTo ( Dest &  dst) const [inline]

Reimplemented from Eigen::ReturnByValue< image_retval_base< _DecompositionType > >.

Reimplemented in Eigen::internal::image_retval< FullPivLU< _MatrixType > >.

Definition at line 54 of file Image.h.

  {
    static_cast<const image_retval<DecompositionType>*>(this)->evalTo(dst);
  }
template<typename _DecompositionType>
const MatrixType& Eigen::internal::image_retval_base< _DecompositionType >::originalMatrix ( ) const [inline]

Definition at line 52 of file Image.h.

{ return m_originalMatrix; }
template<typename _DecompositionType>
Index Eigen::internal::image_retval_base< _DecompositionType >::rank ( ) const [inline]

Definition at line 50 of file Image.h.

{ return m_rank; }
template<typename _DecompositionType>
Index Eigen::internal::image_retval_base< _DecompositionType >::rows ( void  ) const [inline]

Reimplemented from Eigen::ReturnByValue< image_retval_base< _DecompositionType > >.

Definition at line 48 of file Image.h.

{ return m_dec.rows(); }

Member Data Documentation

template<typename _DecompositionType>
Index Eigen::internal::image_retval_base< _DecompositionType >::m_cols [protected]

Definition at line 61 of file Image.h.

template<typename _DecompositionType>
const DecompositionType& Eigen::internal::image_retval_base< _DecompositionType >::m_dec [protected]

Definition at line 60 of file Image.h.

template<typename _DecompositionType>
const MatrixType& Eigen::internal::image_retval_base< _DecompositionType >::m_originalMatrix [protected]

Definition at line 62 of file Image.h.

template<typename _DecompositionType>
Index Eigen::internal::image_retval_base< _DecompositionType >::m_rank [protected]

Definition at line 61 of file Image.h.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines