RelaxISPlugin_ResultEvaluatorGetFurtherEvaluations Method |
This allows the calculation and further evaluation of the fitting results, e.g. calculation of the Activation energy from an Arrhenius fit.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public abstract Dictionary<string, string> GetFurtherEvaluations(
double[] ResultParameters,
double[] ResultErrors
)
Public MustOverride Function GetFurtherEvaluations (
ResultParameters As Double(),
ResultErrors As Double()
) As Dictionary(Of String, String)
Dim instance As RelaxISPlugin_ResultEvaluator
Dim ResultParameters As Double()
Dim ResultErrors As Double()
Dim returnValue As Dictionary(Of String, String)
returnValue = instance.GetFurtherEvaluations(ResultParameters,
ResultErrors)
Parameters
- ResultParameters Double
- The parameters gotten from the fit.
- ResultErrors Double
- The error estimates for each parameter gotten from the fit.
Return Value
DictionaryString,
StringString/String pairs should contain description/result values.
Remarks Return a blank dictionary if no further evaluation is required.
See Also