add partial-pivoting LU decomposition

the name 'PartialLU' is not meant to be definitive!
make inverse() and determinant() use it, so it's *almost* considered
well tested.
This commit is contained in:
Benoit Jacob
2009-05-13 02:02:22 +00:00
parent 877c3c00a2
commit 7c14e1eac4
6 changed files with 267 additions and 3 deletions

View File

@@ -109,6 +109,7 @@ template<typename MatrixType,int RowFactor,int ColFactor> class Replicate;
template<typename MatrixType, int Direction = BothDirections> class Reverse;
template<typename MatrixType> class LU;
template<typename MatrixType> class PartialLU;
template<typename MatrixType> class QR;
template<typename MatrixType> class SVD;
template<typename MatrixType> class LLT;