![]() |
ROOT 6.10/09 Reference Guide |
#include "Math/Polynomial.h"
#include "Math/Derivator.h"
#include "Math/IFunction.h"
#include "Math/Functor.h"
#include "Math/WrappedFunction.h"
#include "Math/WrappedParamFunction.h"
#include <iostream>
#include <vector>
#include <cassert>
#include <cmath>
Typedefs | |
typedef double(* | FP) (double, void *) |
typedef double(* | FP2) (double) |
Functions | |
int | main () |
double | myfunc (double x, void *) |
double | myfunc2 (double x) |
int | testDerivation () |
Variables | |
const double | ERRORLIMIT = 1E-5 |
typedef double( * FP) (double, void *) |
Definition at line 24 of file testDerivation.cxx.
typedef double( * FP2) (double) |
Definition at line 25 of file testDerivation.cxx.
int main | ( | ) |
Definition at line 355 of file testDerivation.cxx.
double myfunc | ( | double | x, |
void * | |||
) |
Definition at line 28 of file testDerivation.cxx.
double myfunc2 | ( | double | x | ) |
Definition at line 33 of file testDerivation.cxx.
int testDerivation | ( | ) |
Definition at line 37 of file testDerivation.cxx.
const double ERRORLIMIT = 1E-5 |
Definition at line 22 of file testDerivation.cxx.