IRelaxISWCFLinkGetFit 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 [OperationContractAttribute]
RelaxISFitResult GetFit(
ImpedanceSpectrum Spectrum,
string TransferFunction,
string WeightMode,
List<int> FixedIndizes
)
<OperationContractAttribute>
Function GetFit (
Spectrum As ImpedanceSpectrum,
TransferFunction As String,
WeightMode As String,
FixedIndizes As List(Of Integer)
) As RelaxISFitResult
Dim instance As IRelaxISWCFLink
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. If null, the Fixed properties of the spectrum parameters are used, otherwise these are ignored.
Return Value
RelaxISFitResultA
RelaxISFitResult object that contains the fit result.
Remarks See Also