IMSL C# Numerical Library

BsInterpolate Constructor (Double[], Double[])

Constructs a B-spline that interpolates the given data points. The computed B-spline will be order 4 (cubic) and have a default "not-a-knot" spline knot sequence.

public BsInterpolate(
   double[] xData,
   double[] yData
);

Parameters

xData
A double array containing the x-coordinates of the data. Values must be distinct.
yData
A double array containing the y-coordinates of the data. The arrays xData and yData must have the same length.

See Also

BsInterpolate Class | Imsl.Math Namespace | BsInterpolate Constructor Overload List