# TOMLAB  
# REGISTER (TOMLAB)
# LOGIN  
# myTOMLAB
TOMLAB LOGO

« Previous « Start » Next »

3  Setting LGO Options

All control parameters can be set directly from Matlab.

3.1  Setting options using the Prob.LGO structure

The parameters can be set as subfields in the Prob.LGO structure. The following example shows how to set a limit on the maximum number of merit function evaluations before termination of global search phase.
Prob = glcAssign(...)     % Setup problem, see help glcAssign for more information

Prob.LGO.options.G_maxfct = 10000; % Setting the maximum number of global search
                                   % phase model function evaluations.

In the cases where a solver specific parameter has a corresponding TOMLAB general parameter, the latter is used only if the user has not given the solver specific parameter.

A complete description of the available LGO parameters can be found in Section 5.1.

« Previous « Start » Next »