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