Click or drag to resize

PronySeriesFrequencyDomainComplexInterpolationInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble) Method

Sets the interpolation data by providing values for xreal and yreal (both of the same length), as well as for ximag and yimag (both also of the same length, though the length can differ from the real pair).

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public IComplexInterpolationFunction Interpolate(
	IReadOnlyList<double> xreal,
	IReadOnlyList<double> yreal,
	IReadOnlyList<double> ximaginary,
	IReadOnlyList<double> yimaginary
)

Parameters

xreal  IReadOnlyListDouble
Vector of x (independent) data, belonging to the real part of y.
yreal  IReadOnlyListDouble
Vector of the real part of y (dependent) data.
ximaginary  IReadOnlyListDouble
Vector of x (independent) data, belonging to the imaginary part of y.
yimaginary  IReadOnlyListDouble
Vector of the imaginary part of y (dependent) data.

Return Value

IComplexInterpolationFunction
A IComplexInterpolationFunction object.

Implements

IComplexInterpolationInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble)
Remarks
This overload is only supported if IsSupportingSeparateXForRealAndImaginaryPart returns true.
See Also