Function With Derivative Delegate
Represents an objective function that also computes the derivative.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
C#
The value of the function at x.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0
public delegate double FunctionWithDerivative(
double x,
out double derivative
)Parameters
- x Double
- The value at which to evaluate the function
- derivative Double
- When this method returns, the derivative of the function at x.
Return Value
DoubleThe value of the function at x.