LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / ComplexEigenSolver_eigenvectors.cpp
blobbb1c2ccf14b48b8fce1c584abf71281c1107104d
1 MatrixXcf ones = MatrixXcf::Ones(3,3);
2 ComplexEigenSolver<MatrixXcf> ces(ones);
3 cout << "The first eigenvector of the 3x3 matrix of ones is:"
4 << endl << ces.eigenvectors().col(1) << endl;