Click or drag to resize

ClampedCubicSplineLinearInterpolation Method

Handles the case when there are exactly two tabulated points.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
protected override double LinearInterpolation(
	double x
)

Parameters

x  Double
Point to interpolate.

Return Value

Double
Interpolated value.
Remarks
If the point to interpolate falls between the two tabulated values, linear interpolation is used. If the point to be interpolated is less than the left endpoint the interpolated value y is computed so that the slope through the points (x, y) and (x0, y0) is the slope that is specifed for the left endpoint. If the point to be interpolated is greater than the right endpoint the interpolated value y is computed so that the slope through the points (x, y) and (xn, yn) is the slope that is specifed for the right endpoint. Here (x0, y0) and (xn, yn) denote the left and right endpoints, respectively.
See Also