Nothing
rosenbrock <- function(x) {
D <- length(x)
sum_terms <- 0
for (i in 1:(D - 1)) {
sum_terms <- sum_terms + (100 * (x[i+1] - x[i]^2)^2 + (1 - x[i])^2)
}
return(sum_terms)
}
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.