OutOfRangeMode Enumeration

Specifies how to handle x-values that are outside the interpolation range.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
public enum OutOfRangeMode

Members

Throw0 Throw an exception when an x-value is outside the interpolation range.
Clamp1 Clamp x-values to the nearest boundary of the interpolation range.
Fill2 Return a fill value when an x-value is outside the interpolation range.

See Also