Method | Description | |
---|---|---|
NonlinearConjugateGradient ( int numberOfVariables ) : System |
Constructs a new NonlinearConjugateGradient algorithm.
|
|
NonlinearConjugateGradient ( int numberOfVariables, double>.Func |
Constructs a new NonlinearConjugateGradient algorithm.
|
Method | Description | |
---|---|---|
Optimize ( ) : bool |
Implements the actual optimization algorithm. This method should try to minimize the objective function.
|
Method | Description | |
---|---|---|
init ( ) : void |
public NonlinearConjugateGradient ( int numberOfVariables ) : System | ||
numberOfVariables | int | The number of free parameters in the optimization problem. |
return | System |
public NonlinearConjugateGradient ( int numberOfVariables, double>.Func |
||
numberOfVariables | int | The number of free parameters in the optimization problem. |
function | double>.Func | The function to be optimized. |
gradient | double[]>.Func | The gradient of the function. |
return | System |