Method | Description | |
---|---|---|
Maximize ( ) : bool |
Finds the maximum value of a function. The solution vector will be made available at the IOptimizationMethod.Solution property.
|
|
Minimize ( ) : bool |
Finds the minimum value of a function. The solution vector will be made available at the IOptimizationMethod.Solution property.
|
Method | Description | |
---|---|---|
BaseGradientOptimizationMethod ( int numberOfVariables ) : System |
Initializes a new instance of the BaseGradientOptimizationMethod class.
|
|
BaseGradientOptimizationMethod ( int numberOfVariables, double>.Func |
Initializes a new instance of the BaseGradientOptimizationMethod class.
|
protected BaseGradientOptimizationMethod ( int numberOfVariables ) : System | ||
numberOfVariables | int | The number of free parameters in the optimization problem. |
return | System |
protected BaseGradientOptimizationMethod ( int numberOfVariables, double>.Func |
||
numberOfVariables | int | The number of free parameters in the optimization problem. |
function | double>.Func | The objective function whose optimum values should be found. |
gradient | double[]>.Func | The gradient of the objective |
return | System |