Eigen | R Documentation |
Eigen
calculates the eigenvalues and eigenvectors of a square, symmetric matrix using the iterated QR decomposition
Eigen(X, tol = sqrt(.Machine$double.eps), max.iter = 100, retain.zeroes = TRUE)
X |
a square symmetric matrix |
tol |
tolerance passed to |
max.iter |
maximum number of QR iterations |
retain.zeroes |
logical; retain 0 eigenvalues? |
a list of two elements: values
– eigenvalues, vectors
– eigenvectors
John Fox and Georges Monette
eigen
SVD
C <- matrix(c(1,2,3,2,5,6,3,6,10), 3, 3) # nonsingular, symmetric
C
EC <- Eigen(C) # eigenanalysis of C
EC$vectors %*% diag(EC$values) %*% t(EC$vectors) # check
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.