#include <utility>
#include <algorithm>
#include "function_scl.hpp"
Go to the source code of this file.
|
| namespace | gsl |
| | The gsl package creates an interface to the GNU Scientific Library for C++.
|
| |
|
| template<typename T > |
| void | gsl::function_fdf_constructor (function_fdf &fdf, T &t) |
| |
| template<typename T > |
| function_fdf | gsl::make_function_fdf (T &t) |
| | Make a gsl::function_fdf from a function object that implements gsl::function_fdf::Concept. More...
|
| |
| double | gsl::fn_fdf_eval_f (gsl_function_fdf const *const F, double const x) |
| | Evaluate a gsl::function_fdf (or gsl_function_fdf). More...
|
| |
| double | gsl::fn_fdf_eval_f (gsl_function_fdf const &F, double const x) |
| | Evaluate a gsl::function_fdf (or gsl_function_fdf). More...
|
| |
| double | gsl::fn_fdf_eval_df (gsl_function_fdf const *const F, double const x) |
| | Evaluate a gsl::function_fdf (or gsl_function_fdf). More...
|
| |
| double | gsl::fn_fdf_eval_df (gsl_function_fdf const &F, double const x) |
| | Evaluate a gsl::function_fdf (or gsl_function_fdf). More...
|
| |
| void | gsl::fn_fdf_eval_df (gsl_function_fdf const *const F, double const x, double *f, double *df) |
| | Evaluate a gsl::function_fdf (or gsl_function_fdf). More...
|
| |
| void | gsl::fn_fdf_eval_df (gsl_function_fdf const &F, double const x, double &f, double &df) |
| | Evaluate a gsl::function_fdf (or gsl_function_fdf). More...
|
| |