MATLAB File Help: cv.eigen | Index |
Calculates eigenvalues and eigenvectors of a symmetric matrix
eigenvalues = cv.eigen(src)
[eigenvalues,eigenvectors,b] = cv.eigen(src)
src' == src
).src
;
the eigenvalues are stored in the descending order.src
; the eigenvectors are stored as subsequent matrix rows,
in the same order as the corresponding eigenvalues
.The functions cv.eigen calculate just eigenvalues, or eigenvalues and
eigenvectors of the symmetric matrix src
:
src*eigenvectors(i,:)' = eigenvalues(i)*eigenvectors(i,:)'