mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
10 lines
430 B
C++
10 lines
430 B
C++
|
MatrixXd A = MatrixXd::Random(6,6);
|
||
|
cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
|
||
|
|
||
|
EigenSolver<MatrixXd> es(A);
|
||
|
MatrixXd D = es.pseudoEigenvalueMatrix();
|
||
|
MatrixXd V = es.pseudoEigenvectors();
|
||
|
cout << "The pseudo-eigenvalue matrix D is:" << endl << D << endl;
|
||
|
cout << "The pseudo-eigenvector matrix V is:" << endl << V << endl;
|
||
|
cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
|