OptMultivariateFunction Delegate |
Evaluates 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 OptMultivariateFunction(
double[] X
)
Public Delegate Function OptMultivariateFunction (
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 computed function value at the point X.
See Also