cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: FFTW 3.3.5: Complex DFTs cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: cannam@127:
cannam@127:

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

cannam@127:
cannam@127:
cannam@127: cannam@127:

4.3.1 Complex DFTs

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

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

cannam@127:

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

cannam@127:

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

cannam@127: cannam@127:

Arguments

cannam@127: cannam@127: cannam@127:

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

cannam@127:
cannam@127:
cannam@127:

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

cannam@127:
cannam@127: cannam@127: cannam@127: cannam@127: cannam@127: