template<typename MatrixType, unsigned int Mode>
Eigen::TriangularViewImpl<MatrixType, Mode, Sparse> class

Base class for a triangular part in a sparse matrix.

Contents

This class is an abstract base class of class TriangularView, and objects of type TriangularViewImpl cannot be instantiated. It extends class TriangularView with additional methods which are available for sparse expressions only.

Base classes

template<typename Derived>
class SparseMatrixBase
Base class of any sparse matrices or sparse expressions.

Public functions

template<typename OtherDerived>
void solveInPlace(MatrixBase<OtherDerived>& other) const
template<typename OtherDerived>
void solveInPlace(SparseMatrixBase<OtherDerived>& other) const

Function documentation

template<typename MatrixType, unsigned int Mode> template<typename OtherDerived>
void Eigen::TriangularViewImpl<MatrixType, Mode, Sparse><MatrixType, Mode>::solveInPlace(MatrixBase<OtherDerived>& other) const

Applies the inverse of *this to the dense vector or matrix other, "in-place"

template<typename MatrixType, unsigned int Mode> template<typename OtherDerived>
void Eigen::TriangularViewImpl<MatrixType, Mode, Sparse><MatrixType, Mode>::solveInPlace(SparseMatrixBase<OtherDerived>& other) const

Applies the inverse of *this to the sparse vector or matrix other, "in-place"