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