ComplexEigenSolver_compute.cpp
Go to the documentation of this file.
1 MatrixXcf A = MatrixXcf::Random(4,4);
2 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;
3 
4 ComplexEigenSolver<MatrixXcf> ces;
5 ces.compute(A);
6 cout << "The eigenvalues of A are:" << endl << ces.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << ces.eigenvectors() << endl << endl;
8 
9 complex<float> lambda = ces.eigenvalues()[0];
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
11 VectorXcf v = ces.eigenvectors().col(0);
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
13 cout << "... and A * v = " << endl << A * v << endl << endl;
14 
15 cout << "Finally, V * D * V^(-1) = " << endl
16  << ces.eigenvectors() * ces.eigenvalues().asDiagonal() * ces.eigenvectors().inverse() << endl;
ArrayXcf v
Definition: Cwise_arg.cpp:1
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


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:41:49