Eigen::Solve< Decomposition, RhsType > Class Template Reference

Pseudo expression representing a solving operation. More...

+ Inheritance diagram for Eigen::Solve< Decomposition, RhsType >:

Public Types

typedef internal::traits< Solve >::PlainObject PlainObject
 
typedef internal::traits< Solve >::StorageIndex StorageIndex
 

Public Member Functions

EIGEN_CONSTEXPR Index cols () const EIGEN_NOEXCEPT
 
const Decomposition & dec () const
 
const RhsType & rhs () const
 
EIGEN_CONSTEXPR Index rows () const EIGEN_NOEXCEPT
 
 Solve (const Decomposition &dec, const RhsType &rhs)
 

Protected Attributes

const Decomposition & m_dec
 
const internal::ref_selector< RhsType >::type m_rhs
 

Detailed Description

template<typename Decomposition, typename RhsType>
class Eigen::Solve< Decomposition, RhsType >

Pseudo expression representing a solving operation.

Template Parameters
Decompositionthe type of the matrix or decomposition object
Rhstypethe type of the right-hand side

This class represents an expression of A.solve(B) and most of the time this is the only way it is used.

Definition at line 64 of file Solve.h.

Member Typedef Documentation

◆ PlainObject

template<typename Decomposition , typename RhsType >
typedef internal::traits<Solve>::PlainObject Eigen::Solve< Decomposition, RhsType >::PlainObject

Definition at line 67 of file Solve.h.

◆ StorageIndex

template<typename Decomposition , typename RhsType >
typedef internal::traits<Solve>::StorageIndex Eigen::Solve< Decomposition, RhsType >::StorageIndex

Definition at line 68 of file Solve.h.

Constructor & Destructor Documentation

◆ Solve()

template<typename Decomposition , typename RhsType >
Eigen::Solve< Decomposition, RhsType >::Solve ( const Decomposition &  dec,
const RhsType &  rhs 
)
inline

Definition at line 70 of file Solve.h.

71  : m_dec(dec), m_rhs(rhs)
72  {}
const RhsType & rhs() const
Definition: Solve.h:78
const Decomposition & dec() const
Definition: Solve.h:77
const Decomposition & m_dec
Definition: Solve.h:81
const internal::ref_selector< RhsType >::type m_rhs
Definition: Solve.h:82

Member Function Documentation

◆ cols()

template<typename Decomposition , typename RhsType >
EIGEN_CONSTEXPR Index Eigen::Solve< Decomposition, RhsType >::cols ( void  ) const
inline

Definition at line 75 of file Solve.h.

75 { return m_rhs.cols(); }

◆ dec()

template<typename Decomposition , typename RhsType >
const Decomposition& Eigen::Solve< Decomposition, RhsType >::dec ( ) const
inline

Definition at line 77 of file Solve.h.

77 { return m_dec; }

◆ rhs()

template<typename Decomposition , typename RhsType >
const RhsType& Eigen::Solve< Decomposition, RhsType >::rhs ( ) const
inline

Definition at line 78 of file Solve.h.

78 { return m_rhs; }

◆ rows()

template<typename Decomposition , typename RhsType >
EIGEN_CONSTEXPR Index Eigen::Solve< Decomposition, RhsType >::rows ( void  ) const
inline

Definition at line 74 of file Solve.h.

74 { return m_dec.cols(); }

Member Data Documentation

◆ m_dec

template<typename Decomposition , typename RhsType >
const Decomposition& Eigen::Solve< Decomposition, RhsType >::m_dec
protected

Definition at line 81 of file Solve.h.

◆ m_rhs

template<typename Decomposition , typename RhsType >
const internal::ref_selector<RhsType>::type Eigen::Solve< Decomposition, RhsType >::m_rhs
protected

Definition at line 82 of file Solve.h.


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