mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix compilation of docs after changes in Eigenvalues module.
Clean-up after revision 469382407c
.
This commit is contained in:
@@ -4,7 +4,7 @@ cout << "Here is a random symmetric 5x5 matrix:" << endl << A << endl << endl;
|
||||
|
||||
VectorXd diag(5);
|
||||
VectorXd subdiag(4);
|
||||
Tridiagonalization<MatrixXd>::decomposeInPlace(A, diag, subdiag);
|
||||
ei_tridiagonalization_inplace(A, diag, subdiag, true);
|
||||
cout << "The orthogonal matrix Q is:" << endl << A << endl;
|
||||
cout << "The diagonal of the tridiagonal matrix T is:" << endl << diag << endl;
|
||||
cout << "The subdiagonal of the tridiagonal matrix T is:" << endl << subdiag << endl;
|
||||
|
||||
Reference in New Issue
Block a user