Click or drag to resize

L_BFGS_BComputeMin(OptMultivariateFunction, OptMultivariateGradient, OptVariable) Method

Computes the minimum point of a function of several variables.

Namespace: DotNumerics.Optimization
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public double[] ComputeMin(
	OptMultivariateFunction function,
	OptMultivariateGradient gradient,
	OptVariable[] variables
)
Request Example View Source

Parameters

function  OptMultivariateFunction
The function to minimize.
gradient  OptMultivariateGradient
A delegate that computes the gradient.
variables  OptVariable
Array of size N containing the varaibles.

Return Value

Double
Array containing the solution.
See Also