Nothing
fd.vec <-
function (x, f, ..., eps = 1e-06) {
n <- length(x)
f0 <- f(x, ...)
res <- matrix(0, n, n)
ex <- pmax(abs(x), 1)
for (i in 1:n) {
x. <- x
x.[i] <- x[i] + eps * ex[i]
diff.f <- c(f(x., ...) - f0)
diff.x <- x.[i] - x[i]
res[, i] <- diff.f / diff.x
}
res
}
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.