Class ClampedCubicSpline represents a function determined by tabulated values. Function values are calculated using clamped cubic spline interpolation.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class ClampedCubicSpline : CubicSpline
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ClampedCubicSpline _
	Inherits CubicSpline
Visual C++
[SerializableAttribute]
public ref class ClampedCubicSpline : public CubicSpline

Remarks

The clamped cubic spline is a cubic spline where the derivative of the interpolating function is specified at the left and right endpoints.
Evaluating x-values outside the range of tabulated values uses the last fitted cubic, or a linear extrapolation in the case of only 2 or 3 tabulated values.

Inheritance Hierarchy

See Also