Constructor for Spline2DLeastSquares.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public Spline2DLeastSquares(
	double[] xData,
	double[] yData,
	double[,] fData,
	int xSplineSpaceDim,
	int ySplineSpaceDim
)
Visual Basic (Declaration)
Public Sub New ( _
	xData As Double(), _
	yData As Double(), _
	fData As Double(,), _
	xSplineSpaceDim As Integer, _
	ySplineSpaceDim As Integer _
)
Visual C++
public:
Spline2DLeastSquares(
	array<double>^ xData, 
	array<double>^ yData, 
	array<double,2>^ fData, 
	int xSplineSpaceDim, 
	int ySplineSpaceDim
)

Parameters

xData
Type: array< System..::.Double >[]()[]
A double array containing the data points in the x-direction.
yData
Type: array< System..::.Double >[]()[]
A double array containing the data points in the y-direction.
fData
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix of size xData.Length by yData.Length containing the values to be approximated.
xSplineSpaceDim
Type: System..::.Int32
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: System..::.Int32
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