Rewrite from scratch of the eigen solver for symmetric matrices

which now supports selfadjoint matrix. The implementation follows
Golub's famous book.
This commit is contained in:
Gael Guennebaud
2008-06-02 00:30:26 +00:00
parent 06752b2b77
commit 001b01a290
4 changed files with 195 additions and 277 deletions

View File

@@ -126,7 +126,9 @@ template<typename _MatrixType> class Tridiagonalization
* \param matA the input selfadjoint matrix
* \param hCoeffs returned Householder coefficients
*
* The result is written in the lower triangular part of \a matA:
* The result is written in the lower triangular part of \a matA.
*
* Implemented from Golub's "Matrix Computations", algorithm 8.3.1.
*
* \sa packedMatrix()
*/