Nothing
npfConfigInit <- function(FHat,r){
TauF <- edm2gram(FHat)
EigenDecomp <- eigen(TauF,symmetric=TRUE)
FirstRValues <- EigenDecomp$values[1:r]
Ur <- EigenDecomp$vectors[,1:r]
Lambdar <- diag(sapply(FirstRValues,max,0))
P <- Ur %*% sqrt(Lambdar)
return(P)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.