template<typename Derived>
Eigen::TriangularBase class

Base class for triangular part in a matrix.

Base classes

template<typename Derived>
class EigenBase

Public types

enum (anonymous) { Mode = internal::traits<Derived>::Mode, RowsAtCompileTime = internal::traits<Derived>::RowsAtCompileTime, ColsAtCompileTime = internal::traits<Derived>::ColsAtCompileTime, MaxRowsAtCompileTime = internal::traits<Derived>::MaxRowsAtCompileTime, MaxColsAtCompileTime = internal::traits<Derived>::MaxColsAtCompileTime, SizeAtCompileTime = (internal::size_at_compile_time<internal::traits<Derived>::RowsAtCompileTime, internal::traits<Derived>::ColsAtCompileTime>::ret), MaxSizeAtCompileTime = (internal::size_at_compile_time<internal::traits<Derived>::MaxRowsAtCompileTime, internal::traits<Derived>::MaxColsAtCompileTime>::ret) }

Public functions

template<typename Other>
void copyCoeff(Index row, Index col, Other& other)
template<typename DenseDerived>
void evalTo(MatrixBase<DenseDerived>& other) const
template<typename DenseDerived>
void evalToLazy(MatrixBase<DenseDerived>& other) const

Enum documentation

template<typename Derived>
enum Eigen::TriangularBase<Derived>::(anonymous)

Enumerators
Mode
RowsAtCompileTime
ColsAtCompileTime
MaxRowsAtCompileTime
MaxColsAtCompileTime
SizeAtCompileTime

This is equal to the number of coefficients, i.e. the number of rows times the number of columns, or to Dynamic if this is not known at compile-time.

MaxSizeAtCompileTime

Function documentation

template<typename Derived> template<typename Other>
void Eigen::TriangularBase<Derived>::copyCoeff(Index row, Index col, Other& other)

template<typename Derived> template<typename DenseDerived>
void Eigen::TriangularBase<Derived>::evalTo(MatrixBase<DenseDerived>& other) const

Assigns a triangular or selfadjoint matrix to a dense matrix. If the matrix is triangular, the opposite part is set to zero.

template<typename Derived> template<typename DenseDerived>
void Eigen::TriangularBase<Derived>::evalToLazy(MatrixBase<DenseDerived>& other) const

Assigns a triangular or selfadjoint matrix to a dense matrix. If the matrix is triangular, the opposite part is set to zero.