Global Output Structures
run
can produce two types of output structures:
A global output structure. This structure contains information about the overall run from multiple starting points. Details follow.
Local solver output structures. The vector of
GlobalOptimSolution
objects contains one such structure in each element of the vector. For a description of this structure, see Output Structures, or the function reference pages for the local solvers:fmincon
output
,fminunc
output
,lsqcurvefit
output
, orlsqnonlin
output
.
Global Output Structure
Field | Meaning |
---|---|
funcCount | Total number of calls to user-supplied functions (objective or nonlinear constraint) |
localSolverTotal | Number of local solver runs started |
localSolverSuccess | Number of local solver runs that finished with a positive exit flag |
localSolverIncomplete | Number of local solver runs that finished with a 0 exit
flag |
localSolverNoSolution | Number of local solver runs that finished with a negative exit flag |
message | GlobalSearch or MultiStart exit
message |
A positive exit flag from a local solver generally indicates
a successful run. A negative exit flag indicates a failure. A 0
exit
flag indicates that the solver stopped by exceeding the iteration
or function evaluation limit. For more information, see Exit Flags and Exit Messages or Tolerances and Stopping Criteria.