powered by
This function computes the eigenvalues of a centered and reduced data matrix
eigenvalues(X, draw = FALSE)
A list containing
vector of the eigenvalues
a matrix of size tm x vm which contains the functionnal images centered and reduced
Logical. Should we plot the eigenvalues
X <- matrix(rnorm(5 * 4), nrow = 5, ncol = 4) Xc <- centering(X, col.first = TRUE)$Xcentred Xcr <- reduction(Xc, row.red = FALSE)$Xred eigencr <- eigenvalues(Xcr, draw = FALSE)$eigenvalues
Run the code above in your browser using DataLab