Click or drag to resize

SimplexComputeMin(OptMultivariateFunction, Double, Double) 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,
	double[] initialGuess,
	double initialStep
)
Request Example View Source

Parameters

function  OptMultivariateFunction
The function to minimize.
initialGuess  Double
Array of size N containing the initial guess. N is the number of variables.
initialStep  Double
The initial change of the variables.

Return Value

Double
Array containing the solution.
See Also