![]() |
Eigen
3.4.90 (git rev 67eeba6e720c5745abc77ae6c92ce0a44aa7b7ae)
|
Expression of a triangular part in a matrix.
MatrixType | the type of the object in which we are taking the triangular part |
Mode | the kind of triangular matrix expression to construct. Can be Upper, Lower, UnitUpper, UnitLower, StrictlyUpper, or StrictlyLower. This is in fact a bit field; it must have either Upper or Lower, and additionally it may have UnitDiag or ZeroDiag or neither. |
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.
Inherits Eigen::TriangularViewImpl< MatrixType_, Mode_, internal::traits< MatrixType_ >::StorageKind >.
Public Member Functions | |
const AdjointReturnType | adjoint () const |
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
const ConjugateReturnType | conjugate () const |
template<bool Cond> | |
std::conditional_t< Cond, ConjugateReturnType, ConstTriangularView > | conjugateIf () const |
Scalar | determinant () const |
NestedExpression & | nestedExpression () |
const NestedExpression & | nestedExpression () const |
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
SelfAdjointView< MatrixTypeNestedNonRef, Mode > | selfadjointView () |
const SelfAdjointView< MatrixTypeNestedNonRef, Mode > | selfadjointView () const |
const ConstTransposeReturnType | transpose () const |
template<class Dummy = int> | |
TransposeReturnType | transpose (std::enable_if_t< Eigen::internal::is_lvalue< MatrixType >::value, Dummy * >=nullptr) |
|
inline |
|
inline |
|
inline |
|
inline |
*this
if Cond==true, returns *this
otherwise.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
This is a shortcut for
|
inline |
This is the const version of selfadjointView()
|
inline |
|
inline |