class my_Nelder_Mead
[No description available]
Public Functions
Name | |
---|---|
my_Nelder_Mead(int dd, double alpha, double beta, double gamma, int NNtry, double eeps, my_func * ff) | |
bool | one_cycle(my_simplex * s) |
bool | find_global_min(double xin[DMAX *(DMAX+1)]) |
Public Attributes
Name | |
---|---|
my_func * | f |
my_simplex | simplex |
bool | convergeYes |
double | yfinal |
double[DMAX *(DMAX+1)] | xfinal |
Public Functions Documentation
function my_Nelder_Mead
my_Nelder_Mead(
int dd,
double alpha,
double beta,
double gamma,
int NNtry,
double eeps,
my_func * ff
)
function one_cycle
bool one_cycle(
my_simplex * s
)
function find_global_min
bool find_global_min(
double xin[DMAX *(DMAX+1)]
)
Public Attributes Documentation
variable f
my_func * f;
variable simplex
my_simplex simplex;
variable convergeYes
bool convergeYes;
variable yfinal
double yfinal;
variable xfinal
double[DMAX *(DMAX+1)] xfinal;
Updated on 2024-07-18 at 13:53:30 +0000