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