BsInterpolate Constructor (Double, Double, Int32, Double) |
Constructs a B-spline that interpolates the given data points, using
the specified order and knots.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public BsInterpolate(
double[] xData,
double[] yData,
int order,
double[] knot
)
Public Sub New (
xData As Double(),
yData As Double(),
order As Integer,
knot As Double()
)
public:
BsInterpolate(
array<double>^ xData,
array<double>^ yData,
int order,
array<double>^ knot
)
new :
xData : float[] *
yData : float[] *
order : int *
knot : float[] -> BsInterpolate
Parameters
- xData
- Type: SystemDouble
A double array containing the x-coordinates of the data.
Values must be distinct.
- yData
- Type: SystemDouble
A double array containing the y-coordinates of the data. The
arrays xData and yData must have the same length.
- order
- Type: SystemInt32
A int denoting the order of the spline.
- knot
- Type: SystemDouble
A double array containing the knot sequence for the B-spline.
See Also