preprocessbboptions {blackbox} | R Documentation |
Preprocesses a list of argument. The return value of this function serves as argument to blackbox.options
(see Examples). Providing in this way the information described in the Details section of blackbox.options
is essential for further usage of the package functions.
preprocessbboptions(optionList)
optionList |
A list, with named elements, which names will (mostly) match the names of options set by this function |
A list, returned invisibly
## Not run:
GP <- list(ParameterNames=c("theta_1","theta_2"))
pp <- preprocessbboptions(GP)
do.call(blackbox.options, pp) ## essential
## End(Not run)