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#
The y-value of the data point immediately after x.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
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
DoubleThe 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
| Argument | xValues or yValues is null. |
| Dimension | The lengths of xValues and yValues do not match. |
| Argument | xValues does not have at least 1 element, or the values in xValues are not strictly increasing. |
| Argument | x is outside the interpolation range and outOfRangeMode is Throw. |