eqSolvemtControlCreate

Purpose

Fills an eqSolvemtControl structure with default settings.

Format

c = eqSolvemtControlCreate()
Returns:

c (struct) – instance of eqSolvemtControl 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.

new;

/*
** Declare 'c' as an
** eqSolvemtControl structure
*/
struct eqSolvemtControl c;

// Initialize structure c
c = eqSolvemtControlCreate();

The members of an eqSolvemtControl structure and default values are described in the manual entry for eqSolvemt().

Source

eqsolvemt.src

See also

Functions eqSolvemt()