Fourier Transformation Algorithms
|
#include <vector>
Go to the source code of this file.
Classes | |
struct | Fourier::InputData |
The input data to perform a fourier transformation. More... | |
struct | Fourier::Coefficients |
The resulting coefficients of a fourier transformation. More... | |
struct | Fourier::Coefficients::Coefficient |
The actual coefficient data point The actual coefficients derived by a fourier transformation. More... | |
Namespaces | |
Fourier | |
The Fourier namespace is providing data structures to handle input and resulting coefficients of a fourier transformation. | |
Enumerations | |
enum | Fourier::Error { Fourier::Error::NONE, Fourier::Error::NO_VALUES, Fourier::Error::INVALID_DATASET } |
Functions | |
bool | Fourier::Equal (const Coefficients &expected, const Coefficients &result) |
Compares two coefficient lists of the same size. More... | |
bool | Fourier::Equal (double expected, double result, double maximumDelta=1e-15) |
Compares two given values. More... | |