Evaluates the current function at the given set of x-values.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleVector Evaluate(
	DoubleVector x
)
Visual Basic (Declaration)
Public Function Evaluate ( _
	x As DoubleVector _
) As DoubleVector
Visual C++
public:
DoubleVector^ Evaluate(
	DoubleVector^ x
)

Parameters

x
Type: CenterSpace.NMath.Core..::.DoubleVector
The positions on the x-axis at which to evaluate f(x).

Return Value

A vector y such that y[i] = f(x[i]).

See Also