The SOLVE function finds
the value of the specified argument that makes the expression of the
following form equal to zero.
expected-value -
function-name
(argument-1,argument-2,
..., argument-n)
You specify the argument
of interest with a missing value (.), which appears in place of the
argument in the parameter list that is shown above. If the SOLVE function
finds the value, then the value that is returned for this function
is the implied value.
The following is an
example of an options array:
array opts[5] initial abconv relconv maxiter (.5 .001 1.0e-6 100);
where
-
initial
(initial-value)
= .5
-
abconv
(absolute-criterion)
= .001
-
relconv
(relative-criterion)
= 1.0e-6
-
maxiter
(maximum-iterations)
= 100
The solve status is
the fifth element in the array. You can display this value by specifying
opts[5] in the output list.