cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: FFTW 3.3.8: Complex DFTs cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167:
cannam@167:

cannam@167: Next: , Previous: , Up: Basic Interface   [Contents][Index]

cannam@167:
cannam@167:
cannam@167: cannam@167:

4.3.1 Complex DFTs

cannam@167: cannam@167:
cannam@167:
fftw_plan fftw_plan_dft_1d(int n0,
cannam@167:                            fftw_complex *in, fftw_complex *out,
cannam@167:                            int sign, unsigned flags);
cannam@167: fftw_plan fftw_plan_dft_2d(int n0, int n1,
cannam@167:                            fftw_complex *in, fftw_complex *out,
cannam@167:                            int sign, unsigned flags);
cannam@167: fftw_plan fftw_plan_dft_3d(int n0, int n1, int n2,
cannam@167:                            fftw_complex *in, fftw_complex *out,
cannam@167:                            int sign, unsigned flags);
cannam@167: fftw_plan fftw_plan_dft(int rank, const int *n,
cannam@167:                         fftw_complex *in, fftw_complex *out,
cannam@167:                         int sign, unsigned flags);
cannam@167: 
cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: cannam@167:

Plan a complex input/output discrete Fourier transform (DFT) in zero or cannam@167: more dimensions, returning an fftw_plan (see Using Plans). cannam@167:

cannam@167:

Once you have created a plan for a certain transform type and cannam@167: parameters, then creating another plan of the same type and parameters, cannam@167: but for different arrays, is fast and shares constant data with the cannam@167: first plan (if it still exists). cannam@167:

cannam@167:

The planner returns NULL if the plan cannot be created. In the cannam@167: standard FFTW distribution, the basic interface is guaranteed to return cannam@167: a non-NULL plan. A plan may be NULL, however, if you are cannam@167: using a customized FFTW configuration supporting a restricted set of cannam@167: transforms. cannam@167:

cannam@167: cannam@167:

Arguments

cannam@167: cannam@167: cannam@167:

FFTW computes an unnormalized transform: computing a forward followed by cannam@167: a backward transform (or vice versa) will result in the original data cannam@167: multiplied by the size of the transform (the product of the dimensions). cannam@167: cannam@167: For more information, see What FFTW Really Computes. cannam@167:

cannam@167:
cannam@167:
cannam@167:

cannam@167: Next: , Previous: , Up: Basic Interface   [Contents][Index]

cannam@167:
cannam@167: cannam@167: cannam@167: cannam@167: cannam@167: