Click or drag to resize

SimplexDownhill Class

The Nelder-Mead Simplex Downhill Method is a deterministic direct search method. It is known to perform quite well in low dimensions, at least for local search. http://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method
Inheritance Hierarchy
SystemObject
  FinMath.MachineLearning.EvolutionaryAlgorithmsBaseOptimizer
    FinMath.MachineLearning.EvolutionaryAlgorithmsSimplexDownhill

Namespace:  FinMath.MachineLearning.EvolutionaryAlgorithms
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public class SimplexDownhill : BaseOptimizer

The SimplexDownhill type exposes the following members.

Constructors
  NameDescription
Public methodSimplexDownhill
Initializes a new instance of the SimplexDownhill class
Top
Properties
  NameDescription
Public propertyMinimizationSteps
Overall minimization steps number.
(Inherited from BaseOptimizer.)
Public propertyRestartCount
The minimization process restarts number.
(Inherited from BaseOptimizer.)
Public propertySolutionPoint
The best found solution point.
(Inherited from BaseOptimizer.)
Public propertySolutionStep
The step number where the best solution found.
(Inherited from BaseOptimizer.)
Public propertySolutionValue
The best found objective function value.
(Inherited from BaseOptimizer.)
Public propertyTerminationDelegate
The user's stop criterion function.
(Inherited from BaseOptimizer.)
Public propertyTerminationIterations
The maximum optimization iterations number.
(Inherited from BaseOptimizer.)
Public propertyTerminationObjectiveChange
Objective function change stop criterion. Null means no objective change termination conditions.
(Inherited from BaseOptimizer.)
Public propertyTerminationTimeout
The algorithm timeout: the execution will be interrupted on the next step after the timeout expiration.
(Inherited from BaseOptimizer.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodOptimize
Minimization method.
(Overrides BaseOptimizerOptimize(BaseOptimizerObjectiveDelegateType, Vector).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also