R/USV.R

Defines functions USV

Documented in USV

USV <-
function(G)
{

uu = svd(G)

##  assign("U", uu$u, envir = .GlobalEnv)
## assign("S", uu$d, envir = .GlobalEnv)
## assign("V", uu$v, envir = .GlobalEnv)

return(list(U=uu$u, S=uu$d, V= uu$v))

}

Try the PEIP package in your browser

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

PEIP documentation built on Aug. 21, 2023, 9:10 a.m.