Finds the location of the global extremum (i.e. minimum or maximum) of a general multidimensional function using the technique known as simulated annealing applied to a modified version of the Needler and Mead's downhill simplex algorithm.
Finds the location of the global extremum (i.e. minimum or maximum) of a general multidimensional function using the technique known as simulated annealing applied to a modified version of the Needler and Mead's downhill simplex algorithm.
public double[] GlobalAnnealing(ExtremumTypes,double[],int,double,double,double,double,int);
Seeks a global extremum (minimum or maximum) of a differentiable multidimensional object function using simulated annealing applied in conjunction with one of the following algorithms for finding the local extremum of differentiable object functions:
public double[] GlobalAnnealing(ExtremumTypes,double[],int,double,double,BracketingAlgorithm,LocateAlgorithm,double,double,double,int,double,AnnealingAlgorithmTypes);
MultiDimensionalSolver Class | WebCab.COM.Math.Optimization.MultiDimensional Namespace