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