Click or drag to resize
Spline2DInterpolate Constructor (Double, Double, Double, Int32, Int32)
Constructor for Spline2DInterpolate.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Spline2DInterpolate(
	double[] xData,
	double[] yData,
	double[,] fData,
	int xOrder,
	int yOrder
)

Parameters

xData
Type: SystemDouble
A double array containing the data points in the x-direction.
yData
Type: SystemDouble
A double array containing the data points in the y-direction.
fData
Type: SystemDouble
A double matrix of size xData.Length by yData.Length containing the values to be interpolated.
xOrder
Type: SystemInt32
An int scalar value specifying the order of the spline in the x-direction. xOrder must be at least 1. By default, xOrder = 4, tensor-product cubic spline.
yOrder
Type: SystemInt32
An int scalar value specifying the order of the spline in the y-direction. yOrder must be at least 1. By default, yOrder = 4, tensor-product cubic spline.
See Also