FunctionWithDerivative Delegate

Represents an objective function that also computes the derivative.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public delegate double FunctionWithDerivative(
	double x,
	out double derivative
)

Parameters

x  Double
The value at which to evaluate the function
derivative  Double
On return, the derivative of the function at x.

Return Value

Double
The value of the function at x.

See Also