|
| FFTW () |
|
| ~FFTW () |
|
void | plan_r2c (const IPosition &size, Float *in, Complex *out) |
| polymorphic interface to fftw[f]_plan... More...
|
|
void | plan_r2c (const IPosition &size, Double *in, DComplex *out) |
|
void | plan_c2r (const IPosition &size, Complex *in, Float *out) |
|
void | plan_c2r (const IPosition &size, DComplex *in, Double *out) |
|
void | plan_c2c_forward (const IPosition &size, DComplex *in) |
|
void | plan_c2c_forward (const IPosition &size, Complex *in) |
|
void | plan_c2c_backward (const IPosition &size, DComplex *in) |
|
void | plan_c2c_backward (const IPosition &size, Complex *in) |
|
void | r2c (const IPosition &size, Float *in, Complex *out) |
| polymorphic interface to fftw[f]_execute... More...
|
|
void | r2c (const IPosition &size, Double *in, DComplex *out) |
|
void | c2r (const IPosition &size, Complex *in, Float *out) |
|
void | c2r (const IPosition &size, DComplex *in, Double *out) |
|
void | c2c (const IPosition &size, Complex *in, Bool forward) |
|
void | c2c (const IPosition &size, DComplex *in, Bool forward) |
|
C++ interface to the FFTWw library.
Review Status
- Reviewed By:
- NONE
Synopsis
This is a wrapper of FFTW3. It is only active if FFTW3 was found during the build. If not found, all functions won't do anything at all.
The interface is such that the presence of FFTW3 is only visible in the implementation. The header file does not need to know. In this way external code using this class does not need to set HAVE_FFTW.
Definition at line 57 of file FFTW.h.