Add doc for sparse triangular solve functions

(grafted from ee6f7f6c0ca28e984a4e84aeb7209d520ead54c1
)
This commit is contained in:
Gael Guennebaud 2017-01-04 23:10:36 +01:00
parent 5b6a31626b
commit 9499684320

View File

@ -55,7 +55,10 @@ template<typename MatrixType, unsigned int Mode> class TriangularViewImpl<Matrix
this->solveInPlace(dst);
}
/** Applies the inverse of \c *this to the dense vector or matrix \a other, "in-place" */
template<typename OtherDerived> void solveInPlace(MatrixBase<OtherDerived>& other) const;
/** Applies the inverse of \c *this to the sparse vector or matrix \a other, "in-place" */
template<typename OtherDerived> void solveInPlace(SparseMatrixBase<OtherDerived>& other) const;
};