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