Constructor for Spline2DInterpolate.

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

Syntax

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

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 interpolated.

See Also