Out Of Range Mode 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#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
public enum OutOfRangeModeMembers
| Throw | 0 | Throw an exception when an x-value is outside the interpolation range. |
| Clamp | 1 | Clamp x-values to the nearest boundary of the interpolation range. |
| Fill | 2 | Return a fill value when an x-value is outside the interpolation range. |