naginterfaces.library.fit.opt_get¶
- naginterfaces.library.fit.opt_get(optstr, comm)[source]¶
opt_get
is used to query the value of options available to supported problem solving functions in submodulefit
. Currently, onlydim2_spline_ts_sctr()
is supported.For full information please refer to the NAG Library document for e02zl
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/e02/e02zlf.html
- Parameters
- optstrstr
A string identifying the option whose current value is required. See Other Parameters for dim2_spline_ts_sctr for information on valid options. In addition, the following is a valid option:
Identify
opt_get
returns the function name supplied toopt_set()
when the option arrays [‘iopts’] and [‘opts’] were initialized.- commdict, communication object
Communication structure.
This argument must have been initialized by a prior call to
opt_set()
.
- Returns
- optvaluedict
The option-value
dict
, with the following keys:'value'
float, int or strThe value of the requested option.
'annotation'
None or strPossible additional information about the option value.
- Raises
- NagValueError
- (errno )
On entry, the option in was not recognized: .
- (errno )
On entry, either the option arrays have not been initialized or they have been corrupted.
- Warns
- NagAlgorithmicWarning
- (errno )
On entry, indicates a character option, but is too short to hold the stored value. The returned value will be truncated.
- Notes
opt_get
is used to query the current values of options. It is necessary to initalize option arrays usingopt_set()
before any options are queried.Information on option names and whether these options are real, integer or character can be found in Other Parameters for dim2_spline_ts_sctr.