|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
One-dimensional minimisation. More...
Classes | |
| class | fminimizer |
| Workspace for one-dimensional minimisation. More... | |
Functions | |
| int | test_interval (double x_lower, double x_upper, double epsabs, double epsrel) |
| C++ version of gsl_min_test_interval(). More... | |
| int | find_bracket (function_scl &f, double &x_minimum, double &f_minimum, double &x_lower, double &f_lower, double &x_upper, double &f_upper, size_t eval_max) |
| C++ version of gsl_min_find_bracket(). More... | |
One-dimensional minimisation.
|
inline |
C++ version of gsl_min_find_bracket().
| f | the function to be minimised. |
| x_minimum | Current estimate of the value that minimises f. |
| f_minimum | Value of f at x_minimum. |
| x_lower | Lower bound of the interval containing minimum. |
| f_lower | Value of f at x_lower. |
| x_upper | Upper bound of the interval containing minimum. |
| f_upper | Value of f at x_upper. |
| eval_max | Maximum number of evaluations. |
|
inline |