eigen.Hermitian(x, vectors=T, lower=T, value.range=<see below>, index.range=<see below>, tol=<see below>, tune=<see below>, workspace=<see below>)
n <- 5 x <- Matrix( rnorm(n*n), nrow = n, ncol = n) x[row(x) < col(x)] <- t(x)[row(x) < col(x)] # x is a real symmetric matrix class(x) <- Matrix.class(x) eigen(x) # eigenvalue decomposition of x