OptMultivariateGradient Delegate |
Evaluates the gradient of the function to be minimized.
Namespace: DotNumerics.OptimizationAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public delegate double[] OptMultivariateGradient(
double[] X
)
Public Delegate Function OptMultivariateGradient (
X As Double()
) As Double()
Request Example
Parameters
- X Double
- Vector of length N at which point the function is evaluated, where N id the dimension of the problem.
Return Value
DoubleThe gradient of the function to be minimized.
See Also