Cubic Spline Kind Enumeration
Enumerates the kinds of cubic spline.
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum CubicSplineKind
Members
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. |