Click or drag to resize

IComplexInterpolationInterpolate(IReadOnlyListDouble, IReadOnlyListComplex, IReadOnlyListComplex) Method

Sets the interpolation data by providing values for x and y. Both vectors must be of equal length.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
IComplexInterpolationFunction Interpolate(
	IReadOnlyList<double> xvec,
	IReadOnlyList<Complex> yvec,
	IReadOnlyList<Complex>? yStdDev = null
)

Parameters

xvec  IReadOnlyListDouble
Vector of x (independent) data.
yvec  IReadOnlyListComplex
Vector of y (dependent) data.
yStdDev  IReadOnlyListComplex  (Optional)
Vector of the standard deviation of y (optional, only used for some functions).

Return Value

IComplexInterpolationFunction
A IComplexInterpolationFunction object.
See Also