optimbase.outputcmd {optimbase} | R Documentation |
Call user-defined output function
Description
Call user-defined output function.
Usage
optimbase.outputcmd(this = NULL, state = NULL, data = NULL)
Arguments
this |
An optimization object. |
state |
The current state of the algorithm: either 'init', 'iter', or 'done'. |
data |
A list containing at least the following elements:
|
Details
The data
list argument may contain more levels than those presented
above. These additional levels may contain values which are specific to the
specialized algorithm, such as the simplex in a Nelder-Mead method, the
gradient of the cost function in a BFGS method, etc...
Value
Do not return any data, but execute the output function defined in the
outputcommand
element of this
.
Author(s)
Author of Scilab optimbase module: Michael Baudin (INRIA - Digiteo)
Author of R adaptation: Sebastien Bihorel (sb.pmlab@gmail.com)