TNumber.Ainterp Method

Performs interpolation by means of Akima spline.

X-coordinates are taken from this vector, Y-coordinates are taken from c2 vector, X-coordinate of the point is specified by pnt.

Definition

Namespace: SMath.Math.Numeric
Assembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
C#
public TNumber Ainterp(
	BaseEntry c2,
	BaseEntry pnt
)

Parameters

c2  BaseEntry
Vector of Y-coordinates of the known points.
pnt  BaseEntry
X-coordinate of the point to get the value at.

Return Value

TNumber
Y-coordinate of the point with X-coordinate pnt.

Exceptions

GeneralExceptionThrown in case of type mismatch.

See Also