Differentiation¶
Differentiation contents¶
Differentiation introduction¶
A GSL-based routine for derivatives is provided in deriv_gsl, and a CERNLIB-based routine is given in deriv_cern. These classes allow one to calculate either first, second, and third derivatives. For functions which are tabulated over equally-spaced abscissas, the class deriv_eqi is provided which applies the formulas from Abramowitz and Stegun at a specified order. The class deriv_cern is slower and sometimes more accurate, but also fails more often than deriv_gsl, which never calls the error handler. The GSL derivative class deriv_gsl supports numerical derivatives of functions which operate on multiprecision numbers (see also Multiprecision Support). The class deriv_multip_gsl uses multiprecision to automatically compute a derivative to within a requested precision.
The estimatation of second and third derivatives by deriv_gsl and deriv_cern can be particularly troublesome if the function is not sufficiently smooth. Error estimation is not provided for second and third derivatives. If one has more information about the function, then second and third derivatives are often better computed by fitting to a model and then taking the second or third derivative of the model instead.
Differentiation example¶
This example computes first and second derivatives of
with both deriv_gsl and deriv_cern.
/* Example: ex_deriv.cpp
-------------------------------------------------------------------
An example to demonstrate numerical differentiation. See "License
Information" section of the documentation for license information.
*/
#include <cmath>
#include <boost/numeric/ublas/vector.hpp>
#include <o2scl/test_mgr.h>
#include <o2scl/funct.h>
#include <o2scl/deriv_gsl.h>
#include <o2scl/deriv_cern.h>
using namespace std;
using namespace o2scl;
class cl {
public:
// This is the function we'll take the derivative of
template<class fp_t=double>
fp_t function(fp_t x) {
// We divide integers here to keep the full precision
fp_t half=1;
half/=2;
return sin(2*x)+half;
}
};
int main(void) {
test_mgr t;
t.set_output_level(2);
// The class and associated function
cl acl;
funct f1=std::bind(std::mem_fn<double(double)>(&cl::function<double>),
&acl,std::placeholders::_1);
deriv_gsl<> gd;
// Note that the GSL derivative routine requires an initial stepsize
gd.h=1.0e-3;
deriv_cern<> cd;
// Compute the first derivative using the deriv_gsl class and
// verify that the answer is correct
double d1=gd.deriv(1.0,f1);
t.test_rel(d1,2.0*cos(2.0),1.0e-10,"deriv_gsl");
// Compute the first derivative using the deriv_cern class and
// verify that the answer is correct
double d2=cd.deriv(1.0,f1);
t.test_rel(d2,2.0*cos(2.0),1.0e-10,"deriv_cern");
// Compute the second derivative also
double d3=gd.deriv2(1.0,f1);
t.test_rel(d3,-4.0*sin(2.0),5.0e-7,"deriv_gsl");
double d4=cd.deriv2(1.0,f1);
t.test_rel(d4,-4.0*sin(2.0),1.0e-8,"deriv_cern");
// Use adaptive multiprecision to compute a more accurate first derivative
deriv_gsl dmg;
double val, err;
dmg.deriv_err_multip(1.0,[acl](auto &&tx) mutable
{ return acl.function(tx); },val,err);
t.test_rel(val,2.0*cos(2.0),1.0e-15,"deriv_multip_gsl");
t.report();
return 0;
}
// End of example