Click or drag to resize
Accord.NET (logo)

IOptimizationMethodTInput, TOutput Interface

Common interface for function optimization methods.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public interface IOptimizationMethod<TInput, TOutput>
Request Example View Source

Type Parameters

TInput
TOutput

The IOptimizationMethodTInput, TOutput type exposes the following members.

Properties
  NameDescription
Public propertyNumberOfVariables
Gets the number of variables (free parameters) in the optimization problem.
Public propertySolution
Gets the current solution found, the values of the parameters which optimizes the function.
Public propertyValue
Gets the output of the function at the current Solution.
Top
Methods
  NameDescription
Public methodMaximize
Finds the maximum value of a function. The solution vector will be made available at the Solution property.
Public methodMinimize
Finds the minimum value of a function. The solution vector will be made available at the Solution property.
Top
See Also