| // SPDX-FileCopyrightText: The Eigen Authors | |
| // SPDX-License-Identifier: MPL-2.0 | |
| MatrixXcf ones = MatrixXcf::Ones(3, 3); | |
| ComplexEigenSolver<MatrixXcf> ces(ones, /* computeEigenvectors = */ false); | |
| cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << ces.eigenvalues() << endl; |