cmlmtControlCreate¶
Purpose¶
Creates default cmlmtControl structure.
Format¶
-
c =
cmlmtControlCreate()¶ Returns: c (struct) – instance of cmlmtControlstruct with members set to default values.
Examples¶
Since structures are strongly typed in GAUSS, each structure must be declared before it can be used.
// Declare 'ctl' as an cmlmtControl structure
struct cmlmtControl ctl;
// Initialize structure 'ctl'
ctl = cmlmtControlCreate();
The members of the cmlmtControl structure and their default values are described in the
manual entry for cmlmt().