R/getSingularValues.R

Defines functions `getSingularValues`

`getSingularValues` <-
function(Y) {
        Y = t(Y)
        s = svd(Y)
        p = matrix(s$d)
        return (p)
}

Try the mlegp package in your browser

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

mlegp documentation built on March 18, 2022, 5:29 p.m.