|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
#include <utility>#include <algorithm>#include <gsl/gsl_math.h>

Go to the source code of this file.
Classes | |
| class | gsl::function_scl |
| Class that extends gsl_function so that it can be constructed from arbitrary function objects. More... | |
Namespaces | |
| namespace | gsl |
| The gsl package creates an interface to the GNU Scientific Library for C++. | |
Functions | |
| template<typename T , typename R , typename A > | |
| function_scl | gsl::make_function_scl (T &c, R(T::*f)(A)) |
| Make a gsl::function_scl from a function object and a suitable non-const member function. More... | |
| double | gsl::fn_eval (gsl_function const &F, double const x) |
| Evaluate a gsl::function (or gsl_function). More... | |