Click or drag to resize
Spline2DLeastSquares Constructor
Constructor for Spline2DLeastSquares.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public Spline2DLeastSquares(
	double[] xData,
	double[] yData,
	double[,] fData,
	int xSplineSpaceDim,
	int ySplineSpaceDim
)

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 approximated.
xSplineSpaceDim
Type: SystemInt32
An int scalar value specifying the linear dimension of the spline subspace for the x variable. It should be smaller than xData.Length and greater than or equal to xOrder (whose default value is 4).
ySplineSpaceDim
Type: SystemInt32
An int scalar value specifying the linear dimension of the spline subspace for the y variable. It should be smaller than yData.Length and greater than or equal to yOrder (whose default value is 4).
See Also