Chris@42: Chris@42: Chris@42: Chris@42: Chris@42:
Chris@42:Chris@42: Next: 64-bit Guru Interface, Previous: Guru Real-data DFTs, Up: Guru Interface [Contents][Index]
Chris@42:fftw_plan fftw_plan_guru_r2r(int rank, const fftw_iodim *dims, Chris@42: int howmany_rank, Chris@42: const fftw_iodim *howmany_dims, Chris@42: double *in, double *out, Chris@42: const fftw_r2r_kind *kind, Chris@42: unsigned flags); Chris@42:
Plan a real-to-real (r2r) multi-dimensional FFTW_FORWARD
Chris@42: transform with transform dimensions given by (rank
, dims
)
Chris@42: over a multi-dimensional vector (loop) of dimensions
Chris@42: (howmany_rank
, howmany_dims
). dims
and
Chris@42: howmany_dims
should point to fftw_iodim
arrays of length
Chris@42: rank
and howmany_rank
, respectively.
Chris@42:
The transform kind of each dimension is given by the kind
Chris@42: parameter, which should point to an array of length rank
. Valid
Chris@42: fftw_r2r_kind
constants are given in Real-to-Real Transform Kinds.
Chris@42:
in
and out
point to the real input and output arrays; they
Chris@42: may be the same, indicating an in-place transform.
Chris@42:
flags
is a bitwise OR (‘|’) of zero or more planner flags,
Chris@42: as defined in Planner Flags.
Chris@42: