TMatrix.Cinterp Method
Performs interpolation by means of cubic spline.
Namespace: SMath.Math.NumericAssembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
public double Cinterp(
double[] x,
double[] y,
double pnt
)
Public Function Cinterp (
x As Double(),
y As Double(),
pnt As Double
) As Double
public:
double Cinterp(
array<double>^ x,
array<double>^ y,
double pnt
)
member Cinterp :
x : float[] *
y : float[] *
pnt : float -> float
- x Double[]
- X-coordinates of the known points.
- y Double[]
- Y-coordinates of the known points.
- pnt Double
- X-coordinate of the point to get the value at.
DoubleY-coordinate of the point with X-coordinate
pnt.