Previous Up Next

15.2.3  Eigenvectors

The egv or eigenvectors or eigenvects or eigVc command finds the eigenvectors of a diagonalizable matrix.

See also Section 15.2.5 for characteristic vectors.

Examples

egv([[1,1,3],[1,3,1],[3,1,1]])
     



1−11
120
1−1−1



          
egv([[4,1,-2],[1,2,-1],[2,1,0]])
     
“Not diagonalizable at eigenvalue 2”           

Input in complex mode:

egv([[2,0,0],[0,2,-1],[2,1,2]])
     



100
−2−1−1
0ii



          

Previous Up Next