eigenmatrix(a)

Returns the eigenmatrix of matrix a. Eigenvectors are the columns of the returned matrix.


See also eigenvalues 


Example


a = ( 2, 4, 6 ; 4, 5 ; 0, -3, 5 )

2  4  6

4  5  0

0 -3  5

eigenmatrix( a )

-0.8436   0.0885 + 0.8650 i   0.0885 - 0.8650 i

 0.4918   0.9228 + 0.5488 i   0.9228 - 0.5488 i

 0.2150  -0.9174 + 0.3833 i  -0.9174 - 0.3833 i