Click or drag to resize

StepInterpolationInterpolate(IEnumerableDouble, IEnumerableDouble) Method

Create a step interpolation from an unsorted set of (x,y) value pairs.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static StepInterpolation Interpolate(
	IEnumerable<double> x,
	IEnumerable<double> y
)

Parameters

x  IEnumerableDouble
The sample points.
y  IEnumerableDouble
The segment values corresponding to each sample point.

Return Value

StepInterpolation
The step interpolator.
See Also