Rev 28048 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{eigen}\alias{eigen}\title{Spectral Decomposition of a Matrix}\usage{eigen(x, symmetric, only.values = FALSE, EISPACK = FALSE)}\arguments{\item{x}{a matrix whose spectral decomposition is to be computed.}\item{symmetric}{if \code{TRUE}, the matrix is assumed to be symmetric(or Hermitian if complex) and only its lower triangle is used.If \code{symmetric} is not specified, the matrix is inspected forsymmetry.}\item{only.values}{if \code{TRUE}, only the eigenvalues are computedand returned, otherwise both eigenvalues and eigenvectors arereturned.}\item{EISPACK}{logical. Should EISPACK be used (for compatibility with\R < 1.7.0)?}}\description{Computes eigenvalues and eigenvectors.}\details{By default \code{eigen} uses the LAPACK routines DSYEVR/DSYEV,DGEEV, ZHEEV and ZGEEV whereas \code{eigen(EISPACK=TRUE)} provides aninterface to the EISPACK routines \code{RS}, \code{RG}, \code{CH}and \code{CG}.If \code{symmetric} is unspecified, the code attempts todetermine if the matrix is symmetric up to plausible numericalinaccuracies. It is faster and surer to set the value yourself.\code{eigen} is preferred to \code{eigen(EISPACK = TRUE)}for new projects, but its eigenvectors may differ in sign and(in the asymmetric case) in normalization. (They may also differbetween methods and between platforms.)In the real symmetric case, LAPACK routine DSYEVR is used whichrequires IEEE 754 arithmetic. Should this not be supported onyour platform, DSYEV is used, with a warning.Computing the eigenvectors is the slow part for large matrices.}\value{The spectral decomposition of \code{x} is returned as components of alist with components\item{values}{a vector containing the \eqn{p} eigenvalues of \code{x},sorted in \emph{decreasing} order, according to \code{Mod(values)}in the asymmetric case when they might be complex (even for realmatrices). For real asymmetric matrices the vector will becomplex only if complex conjugate pairs of eigenvalues are detected.}\item{vectors}{either a \eqn{p\times p}{p * p} matrix whose columnscontain the eigenvectors of \code{x}, or \code{NULL} if\code{only.values} is \code{TRUE}.For \code{eigen(, symmetric = FALSE, EISPACK =TRUE)} the choice oflength of the eigenvectors is not defined by EISPACK. In all othercases the vectors are normalized to unit length.Recall that the eigenvectors are only defined up to a constant: evenwhen the length is specified they are still only defined up to ascalar of modulus one (the sign for real matrices).}}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth \& Brooks/Cole.Smith, B. T, Boyle, J. M., Dongarra, J. J., Garbow, B. S., Ikebe,Y.,Klema, V., and Moler, C. B. (1976).\emph{Matrix Eigensystems Routines -- EISPACK Guide}.Springer-Verlag Lecture Notes in Computer Science.Anderson. E. and ten others (1999)\emph{LAPACK Users' Guide}. Third Edition. SIAM.\crAvailable on-line at\url{http://www.netlib.org/lapack/lug/lapack_lug.html}.}\seealso{\code{\link{svd}}, a generalization of \code{eigen}; \code{\link{qr}}, and\code{\link{chol}} for related decompositions.To compute the determinant of a matrix, the \code{\link{qr}}decomposition is much more efficient: \code{\link{det}}.\code{\link{capabilities}} to test for IEEE 754 arithmetic.}\examples{eigen(cbind(c(1,-1),c(-1,1)))eigen(cbind(c(1,-1),c(-1,1)), symmetric = FALSE)# same (different algorithm).eigen(cbind(1,c(1,-1)), only.values = TRUE)eigen(cbind(-1,2:1)) # complex valueseigen(print(cbind(c(0,1i), c(-1i,0))))# Hermite ==> real Eigen values## 3 x 3:eigen(cbind( 1,3:1,1:3))eigen(cbind(-1,c(1:2,0),0:2)) # complex values}\keyword{algebra}\keyword{array}