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

« Previous « Start » Next »

3  Setting CGO Options

All control parameters can be set directly from Matlab.

The parameters can be set as subfields in the Prob.CGO, Prob.optParam and Prob.GO structures. The following example shows how to set a limit on the maximum number of iterations and the idea (surface search strategy) used by rbfSolve.
Prob = glcAssign(...)     % Setup problem, see help glcAssign for more information

Prob.GO.MaxIter = 50;     % Setting the maximum number iterations.
Prob.CGO.idea = 1;        % Idea set to first option.
A complete description of the available CGO parameters can be found in Section 5.

« Previous « Start » Next »