Returns the value of the radial basis at a point.

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

Syntax

C#
public double[] Eval(
	double[,] x
)
Visual Basic (Declaration)
Public Function Eval ( _
	x As Double(,) _
) As Double()
Visual C++
public:
array<double>^ Eval(
	array<double,2>^ x
)

Parameters

x
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix of size n by nDim containing the points at which the radial basis is to be evaluated.

Return Value

A double array giving the value of the radial basis at the point x

See Also