Command Reference : Function Reference : Function Reference: E
  
 
@eigenvectors
Eigenvectors of symmetric matrix.
Syntax: @eigenvectors(s)
s: sym
Return: matrix
Returns a square matrix whose columns are the eigenvectors of the sym s.
Each eigenvector v satisfies , where is the symmetric matrix given by s, and where n is the eigenvalue associated with the eigenvector v. The eigenvalues are arranged in ascending order, and the columns of the eigenvector matrix correspond to the sorted eigenvalues.
Examples
sym s1 = @unvech(@mnrnd(15))
matrix m1 = @eigenvectors(s1)
creates M1, a matrix of eigenvectors of S1.
Cross-references
See @eigenvalues.