funBBOBCall | R Documentation |
Call (external) BBOB Function.
Call the generator makeBBOBFunction
for the
noiseless function set of the real-parameter
Black-Box Optimization Benchmarking (BBOB).
funBBOBCall(x, opt = list(), ...)
x |
matrix of points to evaluate with the function. Rows for points and columns for dimension. |
opt |
list with the following entries
|
... |
further arguments |
1-column matrix with resulting function values
## Call the first instance of the 2D Sphere function require("smoof") require("SPOT") set.seed(123) x <- matrix(c(1,2),1,2) funBBOBCall(x, opt = list(dimensions = 2L, fid = 1L, iid =1L)) spot(x=NULL, funBBOBCall, lower = c(-2,-3), upper = c(1,2), control=list(funEvals=15), opt = list(dimensions = 2L, fid = 1L, iid = 1L ))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.