RelaxISPlugin_ResultEvaluatorGetInitialValues Method |
This function needs to calculate initial starting parameters for the given X- and Y-Values.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public abstract double[] GetInitialValues(
double[] XValues,
double[] YValues
)
Public MustOverride Function GetInitialValues (
XValues As Double(),
YValues As Double()
) As Double()
Dim instance As RelaxISPlugin_ResultEvaluator
Dim XValues As Double()
Dim YValues As Double()
Dim returnValue As Double()
returnValue = instance.GetInitialValues(XValues,
YValues)
Parameters
- XValues Double
- Array of double that will contain all X-Values.
- YValues Double
- Array of double that will contain all Y-Values.
Return Value
DoubleAn array of double that needs to contain initial values, one item for each parameter of the fitting function.
Remarks The better the initial values, the better the fit.
See Also