RelaxISPlugin_MultifitModelFitFunction Method |
The actual model function used for fitting.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public abstract Complex FitFunction(
double[] X,
double[] Parameters
)
Public MustOverride Function FitFunction (
X As Double(),
Parameters As Double()
) As Complex
Dim instance As RelaxISPlugin_MultifitModel
Dim X As Double()
Dim Parameters As Double()
Dim returnValue As Complex
returnValue = instance.FitFunction(X,
Parameters)
Parameters
- X Double
- An array of independent parameters, where index 0 always contains the frequency of the datapoint, index 1 contains the index of the spectrum (round to Integer), and further values are the RequiredMetadata values in order
- Parameters Double
- The fit parameters, with the shared parameters first, followed by the sets of individual parameters.
Return Value
ComplexA tuple containing the real part of the result as Item1 and the imaginary part as Item2.
Remarks See Also