Nothing
ackley <- function(x) {
D <- length(x)
term1 <- -20 * exp(-0.2 * sqrt(sum(x^2) / D))
term2 <- -exp(sum(cos(2 * pi * x)) / D)
return(term1 + term2 + 20 + exp(1))
}
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.