ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
function_fdf.hpp File Reference
#include <utility>
#include <algorithm>
#include "function_scl.hpp"
Include dependency graph for function_fdf.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  gsl::function_fdf
 Class that extends gsl_function_fdf so that it can be constructed from arbitrary function objects. More...
 
struct  gsl::function_fdf::Concept
 This is an empty abstract base class. More...
 

Namespaces

namespace  gsl
 The gsl package creates an interface to the GNU Scientific Library for C++.
 

Functions

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...