Class NaturalCubicSpline represents a function determined by tabulated values.
Function values are calculated using natural cubic spline interpolation.
Namespace:
CenterSpace.NMath.CoreAssembly: 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.
Evaluating x-values outside the range of tabulated values returns the last know y-value.
Inheritance Hierarchy
System..::.Object
CenterSpace.NMath.Core..::.OneVariableFunction
CenterSpace.NMath.Core..::.TabulatedFunction
CenterSpace.NMath.Core..::.CubicSpline
CenterSpace.NMath.Core..::.NaturalCubicSpline
CenterSpace.NMath.Core..::.OneVariableFunction
CenterSpace.NMath.Core..::.TabulatedFunction
CenterSpace.NMath.Core..::.CubicSpline
CenterSpace.NMath.Core..::.NaturalCubicSpline