3998
|
1 CLASS = "NLEqn" |
|
2 |
|
3 FCN_NAME = "fsolve" |
|
4 |
|
5 DOC_STRING |
|
6 When called with two arguments, this function allows you set options |
|
7 parameters for the function @code{fsolve}. Given one argument, |
|
8 @code{fsolve_options} returns the value of the corresponding option. If |
|
9 no arguments are supplied, the names of all the available options and |
|
10 their current values are displayed. |
|
11 END_DOC_STRING |
|
12 |
|
13 OPTION |
|
14 NAME = "tolerance" |
|
15 TYPE = "double" |
|
16 INIT_VALUE = "::sqrt (DBL_EPSILON)" |
|
17 SET_EXPR = "(val > 0.0) ? val : ::sqrt (DBL_EPSILON)" |
|
18 END_OPTION |