Interpolation.Next Method

Performs next-value (step right) interpolation at a single point.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
public static double Next(
	double[] xValues,
	double[] yValues,
	double x,
	OutOfRangeMode outOfRangeMode = OutOfRangeMode.Throw,
	double fillValue = NaN
)

Parameters

xValues  Double[]
The x-coordinates of the data points. Must be strictly increasing.
yValues  Double[]
The y-coordinates of the data points.
x  Double
The x-coordinate at which to interpolate.
outOfRangeMode  OutOfRangeMode  (Optional)
Specifies how to handle x-values outside the interpolation range.
fillValue  Double  (Optional)
The value to return when outOfRangeMode is Fill and x is out of range.

Return Value

Double
The y-value of the data point immediately after x.

Remarks

This method returns the y-value of the first data point whose x-coordinate is greater than x. This creates a step function that is constant between data points and changes at each x-coordinate.

Exceptions

ArgumentNullExceptionxValues or yValues is null.
DimensionMismatchException The lengths of xValues and yValues do not match.
ArgumentExceptionxValues does not have at least 1 element, or the values in xValues are not strictly increasing.
ArgumentOutOfRangeExceptionx is outside the interpolation range and outOfRangeMode is Throw.

See Also