RelaxISWCFLinkProxyGetFit Method |
This method fits the given impedance spectrum with the selected options and returns the fit result.
Namespace: RelaxIS_SDK.RelaxISWCFLinkAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public RelaxISFitResult GetFit(
ImpedanceSpectrum Spectrum,
string TransferFunction,
string WeightMode,
List<int> FixedIndizes
)
Public Function GetFit (
Spectrum As ImpedanceSpectrum,
TransferFunction As String,
WeightMode As String,
FixedIndizes As List(Of Integer)
) As RelaxISFitResult
Dim instance As RelaxISWCFLinkProxy
Dim Spectrum As ImpedanceSpectrum
Dim TransferFunction As String
Dim WeightMode As String
Dim FixedIndizes As List(Of Integer)
Dim returnValue As RelaxISFitResult
returnValue = instance.GetFit(Spectrum,
TransferFunction, WeightMode, FixedIndizes)
Parameters
- Spectrum ImpedanceSpectrum
- The data to fit. The selected circuit and parameters are used as initial parameters for the fit.
- TransferFunction String
- The transfer function name to use. Refer to the Plugins section in the RelaxIS options to find the name, e.g. "Impedance"
- WeightMode String
- The weighting mode name to use for the fit. Refer to the Plugins section in the RelaxIS options to find the name, e.g. "Proportional weighting"
- FixedIndizes ListInt32
- A list with parameter indizes to fix. E.g. a list {1, 2} fixes the second and third parameter.
Return Value
RelaxISFitResultA RelaxISFitResult object that contains the fit result.
Implements
IRelaxISWCFLinkGetFit(ImpedanceSpectrum, String, String, ListInt32)Remarks You may use the GetParameterNames function of this interface to get a list of parameter names in the correct order, to find the sort order for the parameters.
See Also