optimES | R Documentation |
This is an implementation of an Evolution Strategy.
optimES(x = NULL, fun, lower, upper, control = list(), ...)
x |
optional start point, not used |
fun |
objective function, which receives a matrix x and returns observations y |
lower |
is a vector that defines the lower boundary of search space (this also defines the dimensionality of the problem) |
upper |
is a vector that defines the upper boundary of search space (same length as lower) |
control |
list of control parameters. The
|
... |
additional parameters to be passed on to |
list, with elements
x
NULL, currently not used
y
NULL, currently not used
xbest
best solution
ybest
best observation
count
number of evaluations of fun
cont <- list(funEvals=100) optimES(fun=funSphere,lower=rep(0,2), upper=rep(1,2), control= cont)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.