Constructs a B-spline that interpolates the given data points.
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[],double[]);
Constructs a B-spline that interpolates the given data points and order, using a default "not-a-knot" spline knot sequence.
public BsInterpolate(double[],double[],int);
Constructs a B-spline that interpolates the given data points, using the specified order and knots.
public BsInterpolate(double[],double[],int,double[]);
BsInterpolate Class | Imsl.Math Namespace