Click or drag to resize

StepInterpolationInterpolateSorted Method

Create a step interpolation from a set of (x,y) value pairs, sorted ascendingly by x.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static StepInterpolation InterpolateSorted(
	double[] x,
	double[] y
)

Parameters

x  Double
Sample points, sorted ascendingly.
y  Double
Segment values corresponding to each sample point.

Return Value

StepInterpolation
The step interpolator.
See Also