Calculates the gradient of this functional.

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

Syntax

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

Parameters

x
Type: CenterSpace.NMath.Core..::..DoubleVector
The point at which to evaluate the gradient.

Return Value

The gradient.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::..InvalidArgumentExceptionThrown if the length of x does not match the domain dimension of this functional.

See Also