Fourier Transformation Algorithms
helper.h
Go to the documentation of this file.
1 #ifndef HELPER_H
2 #define HELPER_H
3 
4 #include <string>
5 
6 namespace Fourier {
7  struct InputData;
8  struct Coefficients;
9 };
10 
11 namespace FourierHelper
12 {
21  Fourier::InputData ParseInputDataFile(const std::string& inputData);
22 
34  Fourier::Coefficients ParseOutputDataFile(const std::string& coefficients);
35 };
36 
37 #endif
Fourier::Error::NO_VALUES
@ NO_VALUES
fourier.h
Fourier::InputData
The input data to perform a fourier transformation.
Definition: fourier.h:19
FourierHelper::ParseInputDataFile
Fourier::InputData ParseInputDataFile(const std::string &inputData)
Transforms input data of the form x;y into Fourier:InputData datastruct.
Definition: helper.cpp:9
Fourier
The Fourier namespace is providing data structures to handle input and resulting coefficients of a fo...
Definition: fourier.h:9
FourierHelper::ParseOutputDataFile
Fourier::Coefficients ParseOutputDataFile(const std::string &coefficients)
Transforms coefficients of the form i;x;y into Fourier:Coefficients datastruct.
Definition: helper.cpp:36
Fourier::Coefficients
The resulting coefficients of a fourier transformation.
Definition: fourier.h:43
helper.h
Fourier::Error::INVALID_DATASET
@ INVALID_DATASET
FourierHelper
Definition: helper.h:12