aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/TutorialLinAlgSelfAdjointEigenSolver.cpp
blob: e984443472ef59902324d631842c9214e91ecc49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <Eigen/Dense>

using namespace std;
using namespace Eigen;

int main()
{
   Matrix2f A;
   A << 1, 2, 2, 3;
   cout << "Here is the matrix A:\n" << A << endl;
   SelfAdjointEigenSolver<Matrix2f> eigensolver(A);
   cout << "The eigenvalues of A are:\n" << eigensolver.eigenvalues() << endl;
   cout << "Here's a matrix whose columns are eigenvectors of A "
        << "corresponding to these eigenvalues:\n"
        << eigensolver.eigenvectors() << endl;
}