blob: bb1c2ccf14b48b8fce1c584abf71281c1107104d [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001MatrixXcf ones = MatrixXcf::Ones(3,3);
2ComplexEigenSolver<MatrixXcf> ces(ones);
3cout << "The first eigenvector of the 3x3 matrix of ones is:"
4 << endl << ces.eigenvectors().col(1) << endl;