fglsControlCreate

Purpose

Creates default olsmtControl structure.

Format

fctl = fglsControlCreate()
Returns:

fctl – instance of fglsControl struct 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 'fctl' as an olsmtControl structure
struct fglsControl fctl;

// Initialize structure 'ctl'
fctl = fglsControlCreate();

The members of the fglsControl structure and their default values are described in the manual entry for fgls().

Source

fgls.src

See also

Functions fgls()