IMSL C# Numerical Library

BsInterpolate Constructor

Constructs a B-spline that interpolates the given data points.

Overload List

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[]);

See Also

BsInterpolate Class | Imsl.Math Namespace