CubicSplineKind Enumeration

Enumerates the kinds of cubic spline.

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum CubicSplineKind

Members

Natural0 A natural cubic spline, with second derivative zero at the end points.
Clamped1 A clamped cubic spline, with specific values for the derivative at the end points.
Akima2 An Akima spline.
Hermite3 A cubic Hermite spline, with specific values for the derivative at each data point.
Smoothing4 A smoothing spline.
NotAKnot5 Cubic spline with not-a-knot boundary conditions.
Monotonic6 Cubic spline which preserves the monotonicity of the data points.

See Also