Nothing
equaleigvec <- function(x, y , tol = sqrt(.Machine$double.eps)){
xa <- x/sqrt(sum(x^2))
ya <- y/sqrt(sum(y^2))
max(abs(xa-ya)) < tol | max(abs(xa+ya)) < tol
}
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.