RelaxISPlugin_WeightModeCalculateWeights Method |
The function used to calculate the actual weight values.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public abstract IList<Complex> CalculateWeights(
IList<EISValue> data
)
Public MustOverride Function CalculateWeights (
data As IList(Of EISValue)
) As IList(Of Complex)
Dim instance As RelaxISPlugin_WeightMode
Dim data As IList(Of EISValue)
Dim returnValue As IList(Of Complex)
returnValue = instance.CalculateWeights(data)
Parameters
- data IListEISValue
- A list of EISValue objects to calculate weights for.
Return Value
IListComplexThe calculated weights as complex numbers, where the real and imaginary parts are used to weigh real and imaginary residuals during the fit, respectively.
Remarks The data is already converted using the corresponding transfer function!
See Also