inthpControlCreate#
Purpose#
Creates default inthpControl structure.
Format#
- c = inthpControlCreate()#
- Returns:
c (struct) – instance of
inthpControlstruct with members set to default values.
Examples#
// Declare structure
struct inthpControl c;
// Initialize with default values
c = inthpControlCreate();
// Set maximum function evaluations
c.maxEvaluations = 50000;
// Set relative error bound
c.eps = 1e-8;
Source#
inthp.src