Returns the value of the B-spline at each point of an array.

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>^ x
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array of points at which the B-spline is to be evaluated.

Return Value

A double array containing the value of the B-spline at each point of the array x.

See Also