Functions > Vector and Matrix > Array Characteristics > Example: Finding the Left and Right Eigenvectors
Example: Finding the Left and Right Eigenvectors
To avoid logical mismatches when performing boolean comparisons, enable Approximate Equality in the Calculation Options drop-down list.
1. Define a square real matrix.
2. Use the basic definition of eigenval to find the lambdas of matrix A.
3. Alternatively, use the function eigenvals to find the lambdas of matrix A.
Finding the Right eigenvectors
1. Use the function eigenvecs to find the right (default) eigenvectors of matrix A.
2. Check the deviation between A x Rn and λn x Rn
The deviation is zero.
Finding the Left eigenvectors
1. Use function eigenvecs to find the left eigenvectors of matrix A.
2. Check the deviation between LnT x A and λn x LnT.
The deviation is zero.
Was this helpful?