TBTK
|
Need a break? Support the development by playing Polarity Puzzles |
See more details about the FourierTransform in the API
The FourierTransform can calculate the one-, two- and three-dimensional Fourier transform. This is a wrapper class for the FFTW3 library, which implements an optimized version of the fast Fourier transform (FFT).
The three-dimensional Fourier transform and inverse Fourier transform can be calculated using
Here in and out are c-arrays of type std::complex<double> with size \(SIZE\_X\times SIZE\_Y\times SIZE\_Z\). The normalization factor for each call is \(\sqrt{SIZE\_X\times SIZE\_Y\times SIZE\_Z}\). The transform for other dimensions is done by supplying a different number of size arguments.
When executing multiple similar transforms, it is possible to avoid some overhead by using the advanced interface. This is done by first setting up a plan.
Plans for different dimensionality are obtained by supplying a different number of size arguments. A corresponding plan for the inverse transform can be created by replacing ForwardPlan by InversePlan.
It is also possible to specify a custom normalization factor. If the value is set to 1, the calculation will be avoided completely.
By refilling in with new data between each call, multiple transforms can now be calculated using