Go to the source code of this file.
Functions | |
ces | compute (A) |
Variables | |
MatrixXcf | A = MatrixXcf::Random(4,4) |
cout<< "Here is a random 4x4 matrix, A:"<< endl<< A<< endl<< endl;ComplexEigenSolver< MatrixXcf > | ces |
cout<< "The eigenvalues of A are:"<< endl<< ces.eigenvalues() << endl;cout<< "The matrix of eigenvectors, V, is:"<< endl << ces.eigenvectors()<< endl << endl;complex< float > | lambda = ces.eigenvalues()[0] |
MatrixXcf A = MatrixXcf::Random(4,4) |
Definition at line 1 of file ComplexEigenSolver_compute.cpp.
cout<< "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;ComplexEigenSolver<MatrixXcf> ces |
Definition at line 4 of file ComplexEigenSolver_compute.cpp.