Nothing
gcd <- function(x) {
n <- length(x)
if (n < 2) {
g <- x
warning("Input vector should normally have length greater than 1.")
} else {
ints <- x
g <- ints[1]
z <- .Fortran("gcd", as.integer(n), as.integer(ints), as.integer(g))
g <- z[[3]]
}
return(g)
}
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.