eqSolveSet#
Purpose#
Sets global input used by eqSolve()
to default values.
Format#
- eqSolveSet()#
- Returns:
__eqs_TypicalX (scalar) – Set to 0.
__eqs_TypicalF (scalar) – Set to 0.
__eqs_IterInfo (scalar) – Set to 0.
__eqs_JacobianProc (scalar) – Set to 0.
__eqs_MaxIters (scalar) – Set to 100.
__eqs_StepTol (scalar) – Set to \(\_\_macheps^{2/3}\)
Examples#
// Set the global control variables
// used by eqSolve to default values
eqSolveSet();
Remarks#
As shown in the example above, the global control variables are not returned by eqSolveSet()
. These global variables are set inside of eqSolveSet()
.