FunctionWithDerivative Delegate
Represents an objective function that also computes the derivative.
DefinitionPermalink
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
The value of the function at x.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public delegate double FunctionWithDerivative(
double x,
out double derivative
)
ParametersPermalink
- x Double
- The value at which to evaluate the function
- derivative Double
- On return, the derivative of the function at x.
Return ValuePermalink
DoubleThe value of the function at x.