Click or drag to resize

PronySeriesRetardationEvaluateFrequencyDomain(IReadOnlyListDouble, Boolean, IReadOnlyListDouble, IReadOnlyListDouble) Method

Evaluates a Prony series fit in the time domain, using the properties MinimalRetardationTime, MaximalRetardationTime, NumberOfRetardationTimes, UseIntercept, UseFlowTerm, and RegularizationParameter.

Namespace: Altaxo.Science.Signals
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public PronySeriesRetardationResult 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 it contains normal frequencies.
yarrRe  IReadOnlyListDouble
The real part of the susceptibility, or if not available.
yarrIm  IReadOnlyListDouble
The imaginary part of the susceptibility, or if not available. Note that although for a general susceptibility the imaginary part is negative, in science it is usual to change the sign, e.g. J*(w) = J'(w) - i J''(w). Thus, here it is expected that the imaginary part is positive.

Return Value

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