source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/EigenSolver_pseudoEigenvectors.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 430 bytes
Line 
1MatrixXd A = MatrixXd::Random(6,6);
2cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
3
4EigenSolver<MatrixXd> es(A);
5MatrixXd D = es.pseudoEigenvalueMatrix();
6MatrixXd V = es.pseudoEigenvectors();
7cout << "The pseudo-eigenvalue matrix D is:" << endl << D << endl;
8cout << "The pseudo-eigenvector matrix V is:" << endl << V << endl;
9cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
Note: See TracBrowser for help on using the repository browser.