Evaluates the parameterized function for the given parameter values at the given point.

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

Syntax

C#
public override double Evaluate(
	DoubleVector parameters,
	DoubleVector x
)
Visual Basic (Declaration)
Public Overrides Function Evaluate ( _
	parameters As DoubleVector, _
	x As DoubleVector _
) As Double
Visual C++
public:
virtual double Evaluate(
	DoubleVector^ parameters, 
	DoubleVector^ x
) override

Parameters

parameters
Type: CenterSpace.NMath.Core..::.DoubleVector
The parameter values.
x
Type: CenterSpace.NMath.Core..::.DoubleVector
The point to evaluate the function at.

Return Value

The function value for the given parameter values at the the given point.

See Also