Cubic Spline Kind Enumeration
Enumerates the kinds of cubic spline.
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public enum CubicSplineKindMembers
| Natural | 0 | A natural cubic spline, with second derivative zero at the end points. |
| Clamped | 1 | A clamped cubic spline, with specific values for the derivative at the end points. |
| Akima | 2 | An Akima spline. |
| Hermite | 3 | A cubic Hermite spline, with specific values for the derivative at each data point. |
| Smoothing | 4 | A smoothing spline. |
| NotAKnot | 5 | Cubic spline with not-a-knot boundary conditions. |
| Monotonic | 6 | Cubic spline which preserves the monotonicity of the data points. |