Eigen::TriangularView
        
template<typename _MatrixType, unsigned int _Mode>
 class Eigen::TriangularView< _MatrixType, _Mode >
 Expression of a triangular part in a matrix. 
 
- Parameters
-   
This class represents a triangular part of a matrix, not necessarily square. Strictly speaking, for rectangular matrices one should speak of "trapezoid" parts. This class is the return type of MatrixBase::triangularView() and SparseMatrixBase::triangularView(), and most of the time this is the only way it is used.
 
- See also
- MatrixBase::triangularView() 
  Inherits Eigen::TriangularViewImpl< _MatrixType, _Mode, internal::traits< _MatrixType >::StorageKind >.
    adjoint()
    template<typename _MatrixType , unsigned int _Mode> 
   
    cols()
    template<typename _MatrixType , unsigned int _Mode> 
   
  
- Returns
- the number of columns. 
- See also
- 
rows(), ColsAtCompileTime 
     conjugate()
    template<typename _MatrixType , unsigned int _Mode> 
   
 
- See also
- MatrixBase::conjugate() const 
     conjugateIf()
    template<typename _MatrixType , unsigned int _Mode> 
  template<bool Cond> 
   
 
- Returns
- an expression of the complex conjugate of *thisif Cond==true, returns*thisotherwise.
     determinant()
    template<typename _MatrixType , unsigned int _Mode> 
   
    nestedExpression() [1/2]
    template<typename _MatrixType , unsigned int _Mode> 
   
 
- Returns
- a reference to the nested expression 
     nestedExpression() [2/2]
    template<typename _MatrixType , unsigned int _Mode> 
   
 
- Returns
- a const reference to the nested expression 
     rows()
    template<typename _MatrixType , unsigned int _Mode> 
   
  
- Returns
- the number of rows. 
- See also
- 
cols(), RowsAtCompileTime 
     selfadjointView() [1/2]
    template<typename _MatrixType , unsigned int _Mode> 
   
 
- Returns
- a selfadjoint view of the referenced triangular part which must be either UpperorLower.
This is a shortcut for
this->nestedExpression().selfadjointView<(*this)::Mode>() 
 
- See also
- MatrixBase::selfadjointView() 
     selfadjointView() [2/2]
    template<typename _MatrixType , unsigned int _Mode> 
   
    transpose() [1/2]
    template<typename _MatrixType , unsigned int _Mode> 
   
    transpose() [2/2]
    template<typename _MatrixType , unsigned int _Mode> 
   
   
The documentation for this class was generated from the following file: