LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / SelfAdjointEigenSolver_eigenvalues.cpp
blob0ff33c68d50acdf73d5937e45f7fdff28227d312
1 MatrixXd ones = MatrixXd::Ones(3,3);
2 SelfAdjointEigenSolver<MatrixXd> es(ones);
3 cout << "The eigenvalues of the 3x3 matrix of ones are:"
4 << endl << es.eigenvalues() << endl;