Click or drag to resize

StepInterpolationInterpolateInplace Method

Create a step interpolation from an unsorted set of (x,y) value pairs. WARNING: Works in-place and can thus causes the data array to be reordered.

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

Parameters

x  Double
Sample points (will be sorted in-place).
y  Double
Segment values corresponding to each sample point (will be permuted accordingly).

Return Value

StepInterpolation
The step interpolator.
See Also