Returns the values of the tensor-product spline of an array of points.

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

Syntax

C#
public virtual double[,] Value(
	double[] xVec,
	double[] yVec
)
Visual Basic (Declaration)
Public Overridable Function Value ( _
	xVec As Double(), _
	yVec As Double() _
) As Double(,)
Visual C++
public:
virtual array<double,2>^ Value(
	array<double>^ xVec, 
	array<double>^ yVec
)

Parameters

xVec
Type: array< System..::.Double >[]()[]
A double array specifying the x-coordinates at which the spline is to be evaluated.
yVec
Type: array< System..::.Double >[]()[]
A double array specifying the y-coordinates at which the spline is to be evaluated.

Return Value

A double matrix containing the values evaluated.

See Also