The eigenvectors command returns a list of eigenvectors for a square matrix A and a list of eigenvalues E. The vectors are returned as columns of a matrix.
eigenvalues([[2,1],[1,2]]); [3., 1.] eigenvectors([[2,1],[1,2]], [3,1]); [[1, -1], [1, 1]]