Click or drag to resize

OptMultivariateFunction Delegate

Evaluates the function to be minimized.

Namespace: DotNumerics.Optimization
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public delegate double OptMultivariateFunction(
	double[] X
)
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

Double
The computed function value at the point X.
See Also