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

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

Syntax

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

Remarks

The natural cubic spline is a cubic spline where the second derivative of the interpolating function is required to be zero at the left and right endpoints.
Evaluating x-values outside the range of tabulated values returns the last know y-value.

Inheritance Hierarchy

See Also