Spline2DLeastSquares Constructor |
Constructor for Spline2DLeastSquares.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Spline2DLeastSquares(
double[] xData,
double[] yData,
double[,] fData,
int xSplineSpaceDim,
int ySplineSpaceDim
)
Public Sub New (
xData As Double(),
yData As Double(),
fData As Double(,),
xSplineSpaceDim As Integer,
ySplineSpaceDim As Integer
)
public:
Spline2DLeastSquares(
array<double>^ xData,
array<double>^ yData,
array<double,2>^ fData,
int xSplineSpaceDim,
int ySplineSpaceDim
)
new :
xData : float[] *
yData : float[] *
fData : float[,] *
xSplineSpaceDim : int *
ySplineSpaceDim : int -> Spline2DLeastSquares
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