|
OptimizationFunction2DOptimizationFunction 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,
double y
)
Public MustOverride Function OptimizationFunction (
x As Double,
y As Double
) As Double
Request Example
View SourceParameters
- x
- Type: SystemDouble
Function X input value. - y
- Type: SystemDouble
Function Y 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