![]() |
![]() |
#include <Integral.h>
Public Member Functions | |
NumericalIntegral (const F &f, const Integrator &integrator) | |
double | operator() (double min, double max) const |
Private Attributes | |
F | f_ |
Integrator | integrator_ |
Definition at line 53 of file Integral.h.
funct::NumericalIntegral< Integrator, F, no_var >::NumericalIntegral | ( | const F & | f, |
const Integrator & | integrator | ||
) | [inline] |
Definition at line 54 of file Integral.h.
: f_(f), integrator_(integrator) { }
double funct::NumericalIntegral< Integrator, F, no_var >::operator() | ( | double | min, |
double | max | ||
) | const [inline] |
Definition at line 56 of file Integral.h.
References funct::NumericalIntegral< Integrator, F, X >::f_, and funct::NumericalIntegral< Integrator, F, X >::integrator_.
{ return integrator_(f_, min, max); }
F funct::NumericalIntegral< Integrator, F, no_var >::f_ [private] |
Definition at line 60 of file Integral.h.
Integrator funct::NumericalIntegral< Integrator, F, no_var >::integrator_ [private] |
Definition at line 61 of file Integral.h.