R/eigenvalue.R

Defines functions eigenvalue

Documented in eigenvalue

eigenvalue <- function(X) {
    d <- svd(X, nu=0, nv=0)$d[1]
    d <- d / sqrt(nrow(X))
    return(d)
}

Try the missRows package in your browser

Any scripts or data that you put into this service are public.

missRows documentation built on Nov. 8, 2020, 5:27 p.m.