|
signals-cpp
|
#include "signals/Signal.h"Go to the source code of this file.
Classes | |
| struct | Integrator< IntegratorType > |
| Base type for all integrators. More... | |
| struct | EulerIntegratorSpec |
| Specification for numerically integrating a black box function using Euler's method. More... | |
| struct | TrapezoidalIntegratorSpec |
| Specification for numerically integrating a black box function using the Trapezoidal method. More... | |
| struct | SimpsonIntegratorSpec |
| Specification for numerically integrating a black box function using Simpson's method. More... | |
Macros | |
| #define | MAKE_INTEGRATOR(IntegratorName) |
Typedefs | |
| typedef Integrator< EulerIntegratorSpec > | EulerIntegrator |
| typedef Integrator< TrapezoidalIntegratorSpec > | TrapezoidalIntegrator |
| typedef Integrator< SimpsonIntegratorSpec > | SimpsonIntegrator |
| #define MAKE_INTEGRATOR | ( | IntegratorName | ) |
| typedef Integrator<EulerIntegratorSpec> EulerIntegrator |