Click or drag to resize

PronySeriesRelaxationEvaluateFrequencyDomain(IReadOnlyListDouble, Boolean, IReadOnlyListDouble, IReadOnlyListDouble) Method

Evaluates a Prony series fit in the time domain, using the properties MinimalRelaxationTime, MaximalRelaxationTime, NumberOfRelaxationTimes, UseIntercept, and RegularizationParameter.

Namespace: Altaxo.Science.Signals
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public PronySeriesRelaxationResult EvaluateFrequencyDomain(
	IReadOnlyList<double> xarr,
	bool isCircularFrequency,
	IReadOnlyList<double>? yarrRe,
	IReadOnlyList<double>? yarrIm
)

Parameters

xarr  IReadOnlyListDouble
The x-values of the signal (all elements must be positive).
isCircularFrequency  Boolean
True if xarr contains circular frequencies; false if xarr contains normal frequencies.
yarrRe  IReadOnlyListDouble
The real part of the modulus, or if not available.
yarrIm  IReadOnlyListDouble
The imaginary part of the modulus, or if not available.

Return Value

PronySeriesRelaxationResult
The result of the evaluation, see PronySeriesRelaxationResult.
See Also