Vector-vector form of the evaluate function. Part of the base class DoubleMultiVariableFunction interface.

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

Syntax

C#
public override void Evaluate(
	DoubleVector x,
	ref DoubleVector y
)
Visual Basic (Declaration)
Public Overrides Sub Evaluate ( _
	x As DoubleVector, _
	ByRef y As DoubleVector _
)
Visual C++
public:
virtual void Evaluate(
	DoubleVector^ x, 
	DoubleVector^% y
) override

Parameters

x
Type: CenterSpace.NMath.Core..::.DoubleVector
The point at which to evaluate the functional.
y
Type: CenterSpace.NMath.Core..::.DoubleVector %
The result is placed in y

See Also