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: 9.0.2
C#
The value of the function at x.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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
DoubleThe value of the function at x.