|
OptimizationFunction1DOptimizationFunction Method
|
Function to optimize.
Namespace:
Accord.Genetic
Assembly:
Accord.Genetic (in Accord.Genetic.dll) Version: 3.8.0
Syntax public abstract double OptimizationFunction(
double x
)
Public MustOverride Function OptimizationFunction (
x As Double
) As Double
Request Example
View SourceParameters
- x
- Type: SystemDouble
Function's input value.
Return Value
Type:
DoubleReturns function output value.
Remarks The method should be overloaded by inherited class to
specify the optimization function.
See Also