1*bf2c3715SXin Li MatrixXcf ones = MatrixXcf::Ones(3,3); 2*bf2c3715SXin Li ComplexEigenSolver<MatrixXcf> ces(ones, /* computeEigenvectors = */ false); 3*bf2c3715SXin Li cout << "The eigenvalues of the 3x3 matrix of ones are:" 4*bf2c3715SXin Li << endl << ces.eigenvalues() << endl; 5