00001 MatrixXd ones = MatrixXd::Ones(3,3); 00002 SelfAdjointEigenSolver<MatrixXd> es(ones); 00003 cout << "The eigenvalues of the 3x3 matrix of ones are:" 00004 << endl << es.eigenvalues() << endl;