Go to the documentation of this file.00001 #include <Eigen/Core>
00002 #include <Eigen/LU>
00003 #include <Eigen/QR>
00004 #include <Eigen/Cholesky>
00005 #include <Eigen/Geometry>
00006 #include <Eigen/Jacobi>
00007 #include <Eigen/Eigenvalues>
00008 #include <iostream>
00009
00010 using namespace Eigen;
00011 using namespace std;
00012
00013 int main(int, char**)
00014 {
00015 cout.precision(3);
00016 MatrixXcf A = MatrixXcf::Random(4,4);
00017 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;
00018
00019 ComplexEigenSolver<MatrixXcf> ces;
00020 ces.compute(A);
00021 cout << "The eigenvalues of A are:" << endl << ces.eigenvalues() << endl;
00022 cout << "The matrix of eigenvectors, V, is:" << endl << ces.eigenvectors() << endl << endl;
00023
00024 complex<float> lambda = ces.eigenvalues()[0];
00025 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
00026 VectorXcf v = ces.eigenvectors().col(0);
00027 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
00028 cout << "... and A * v = " << endl << A * v << endl << endl;
00029
00030 cout << "Finally, V * D * V^(-1) = " << endl
00031 << ces.eigenvectors() * ces.eigenvalues().asDiagonal() * ces.eigenvectors().inverse() << endl;
00032
00033 return 0;
00034 }