Nothing
#############################################################################
eigenV <- function(xmat, wp, itmax=200, err=1e-8) {
for (t in 1:itmax) {
wt <- xmat %*% wp
wc <- mGS(wt)
if (norm(wp-wc,"F") < err) {
break
} else { wp <- wc}
}
list(wc=wc, iter=t)
}
#############################################################################
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.