Spline2DValue Method (Double, Double) |
Returns the values of the tensor-product spline of an array of points.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual double[,] Value(
double[] xVec,
double[] yVec
)
Public Overridable Function Value (
xVec As Double(),
yVec As Double()
) As Double(,)
public:
virtual array<double,2>^ Value(
array<double>^ xVec,
array<double>^ yVec
)
abstract Value :
xVec : float[] *
yVec : float[] -> float[,]
override Value :
xVec : float[] *
yVec : float[] -> float[,]
Parameters
- xVec
- Type: SystemDouble
A double array specifying the
x-coordinates at which the spline is to be evaluated.
- yVec
- Type: SystemDouble
A double array specifying the
y-coordinates at which the spline is to be evaluated.
Return Value
Type:
Double A
double matrix containing the
values evaluated.
See Also