Group: | Linear Algebra |
See also: | svd eiggn |
Function: | eigsm | |
Description: | eigsm computes the eigenvalues and eigenvectors of a symmetric matrix in unsorted order. As usally this functionality extends to higher dimensional arrays. |
Usage: | y = eigsm (x) | |
Input: | ||
x | p x p matrix | |
Output: | ||
y.values | p x 1 vector with the eigenvalues | |
y.vectors | p x p matrix with the normalized eigenvectors |
x=#(1,3)~#(3,1) eigsm(x)
Contents of eigsm.values [1,] -2 [2,] 4 Contents of eigsm.vectors [1,] 0.70711 0.70711 [2,] -0.70711 0.70711
Group: | Linear Algebra |
See also: | svd eiggn |