Click or drag to resize

IComplexInterpolationInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble) Method

This call is only supported if IsSupportingSeparateXForRealAndImaginaryPart is returning true. Sets the interpolation data by providing values for xreal and yreal (both of same length), as well as for ximag and yimag (both also of same length, but length can be different from real pair).

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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.
See Also