#include <fft_manager.h>
Public Member Functions | |
| rfft_manager () | |
| rfft_manager (const rfft_manager< T > &rfft_mgr) | |
| ~rfft_manager () | |
| rfft_manager< T > & | operator= (const rfft_manager< T > &rfft_mgr) |
| void | real_to_complex_fft (const vector< long > &in_array_dimens, bool estimate, bool in_place, T *in, T *out=NULL) |
| void | real_to_complex_fft (const vector< long > &in_array_dimens, bool estimate, bool in_place, int howmany, T *in, int istride, int idist, T *out=NULL, int ostride=1, int odist=1) |
| void | complex_to_real_fft (const vector< long > &in_array_dimens, bool estimate, bool in_place, T *in, T *out=NULL) |
| void | complex_to_real_fft (const vector< long > &in_array_dimens, bool estimate, bool in_place, int howmany, T *in, int istride, int idist, T *out=NULL, int ostride=1, int odist=1) |
Static Public Attributes | |
| int | verbose_level = 0 |
| A verbose_level for printing messages. | |
|
|||||||||
|
Null constructor |
|
||||||||||
|
Copy constructor |
|
|||||||||
|
Destructor |
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
Perform a complex to real transform as above, with more options The "out" argument is optional - if you include it an out of place transform will be performed and the results will be stored there. See the FFTW documentation for a description of istride, idist, ostride and odist |
|
||||||||||||||||||||||||||||
|
Perform a complex to real transform input data should be sorted real, imag, real, imag... The "out" argument is optional - if you include it an out of place transform will be performed and the results will be stored there. |
|
||||||||||
|
Operator = |
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
Perform a real to complex transform as above, with more options The "out" argument is optional - if you include it an out of place transform will be performed and the results will be stored there. See the FFTW documentation for a description of istride, idist, ostride and odist |
|
||||||||||||||||||||||||||||
|
Perform a real to complex transform input data should be sorted real, real, real... Some warnings are in order here: The transformed array requires slightly more storage than the original if the final axis is even, because of nyquist. See the FFTW home page for a discussion of this issue and for the output array format. |
|
|||||
|
A verbose_level for printing messages.
|
1.3.9.1