|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
Multidimensional minimisation. More...
Namespaces | |
| namespace | test |
| Functions to test the precision of the current solution. | |
Classes | |
| class | fdfminimizer |
| Workspace for fdfminimizer. More... | |
| class | fminimizer |
| Workspace for fminimizer. More... | |
| class | function |
| Class that extends gsl_multimin_function so that it can be constructed from arbitrary function objects. More... | |
| class | function_fdf |
| Class that extends gsl_multimin_function_fdf so that it can be constructed from arbitrary function objects. More... | |
Functions | |
| int | diff (multimin::function const &f, vector const &x, vector &g) |
| C++ version of gsl_multimin_diff(). More... | |
| int | diff (gsl_multimin_function const *f, vector const &x, vector &g) |
| C++ version of gsl_multimin_diff(). More... | |
| template<typename T > | |
| function | make_function (T &c, double(T::*f)(gsl::vector const &), size_t const n) |
| Make a gsl::multimin::function from a function object and a suitable member function. More... | |
| template<typename T > | |
| function | make_function (T &c, double(T::*f)(gsl::vector const volatile &), size_t const n) |
| Make a gsl::multimin::function from a function object and a suitable member function. More... | |
| template<typename T > | |
| void | function_fdf_constructor (function_fdf &fdf, T &t) |
| template<typename T > | |
| function_fdf | make_function_fdf (T &t) |
| Make a gsl::multimin::function_fdf from a function object that implements gsl::multimin::function_fdf::Concept. More... | |
Multidimensional minimisation.
C++ version of gsl_multimin_diff().
| f | function |
| x | argument |
| g | gradient |
Definition at line 47 of file multimin.hpp.
References gsl::vector::get().
|
inline |
C++ version of gsl_multimin_diff().
| f | function |
| x | argument |
| g | gradient |
Definition at line 38 of file multimin.hpp.
References gsl::vector::get().
| void gsl::multimin::function_fdf_constructor | ( | function_fdf & | fdf, |
| T & | t | ||
| ) |
|
inline |
Make a gsl::multimin::function from a function object and a suitable member function.
| c | The function object. |
| f | The member function. |
| n | The number of parameters of the function. |
Definition at line 4217 of file multimin_function.hpp.
References gsl::rstat::n().
|
inline |
Make a gsl::multimin::function from a function object and a suitable member function.
| c | The function object. |
| f | The member function. |
| n | The number of parameters of the function. |
Definition at line 4232 of file multimin_function.hpp.
References gsl::rstat::n().
|
inline |
Make a gsl::multimin::function_fdf from a function object that implements gsl::multimin::function_fdf::Concept.
| t | The function object. |
Definition at line 359 of file multimin_function_fdf.hpp.