|
Jpp test-rotations-old
the software that should make you happy
|
Example program to test JTOOLS::JQuadrature. More...
#include <string>#include <iostream>#include <iomanip>#include <cmath>#include "JTools/JQuadrature.hh"#include "JMath/JPolynome.hh"#include "JMath/JGauss.hh"#include "Jeep/JParser.hh"#include "Jeep/JMessage.hh"Go to the source code of this file.
Namespaces | |
| namespace | GAUSS_LEGENDRE |
| namespace | GAUSS_LAGUERRE |
| namespace | GAUSS_HERMITE |
Functions | |
| double | GAUSS_LAGUERRE::f1 (const double x) |
| Function. | |
| double | GAUSS_LAGUERRE::F1 (const double x) |
| Integral. | |
| int | main (int argc, char **argv) |
Variables | |
| const int | GAUSS_LEGENDRE::numberOfPoints = 10 |
| const double | GAUSS_LEGENDRE::epsilon = 1.0e-12 |
| const double | GAUSS_LEGENDRE::xmin = -5.0 |
| const double | GAUSS_LEGENDRE::xmax = +3.0 |
| const JPolynome | GAUSS_LEGENDRE::f1 (1.0, 2.0, 3.0) |
| Function. | |
| const JPolynome | GAUSS_LEGENDRE::F1 = f1.getIntegral() |
| Integral. | |
| const int | GAUSS_LAGUERRE::numberOfPoints = 10 |
| const double | GAUSS_LAGUERRE::a = 1.0 |
| const double | GAUSS_LAGUERRE::epsilon = 1.0e-12 |
| const double | GAUSS_LAGUERRE::xmin = 0.0 |
| const double | GAUSS_LAGUERRE::xmax = +1.0e10 |
| const int | GAUSS_HERMITE::numberOfPoints = 10 |
| const double | GAUSS_HERMITE::epsilon = 1.0e-12 |
| const double | GAUSS_HERMITE::sigma [] = { 4.0, 0.5 } |
| const double | GAUSS_HERMITE::xmin = -3.0 * sigma[0] |
| const double | GAUSS_HERMITE::xmax = +3.0 * sigma[0] |
| const JGauss | GAUSS_HERMITE::f1 (0.0, sigma[0]) |
| Function. | |
| const JGauss | GAUSS_HERMITE::F1 (0.0, hypot(sigma[0], sigma[1])) |
| Integral. | |
Example program to test JTOOLS::JQuadrature.
Definition in file JQuadrature.cc.
| int main | ( | int | argc, |
| char ** | argv ) |
Definition at line 97 of file JQuadrature.cc.