Chris@10: Chris@10:
Chris@10:Chris@10: Previous: Advanced Real-data DFTs, Chris@10: Up: Advanced Interface Chris@10:
fftw_plan fftw_plan_many_r2r(int rank, const int *n, int howmany, Chris@10: double *in, const int *inembed, Chris@10: int istride, int idist, Chris@10: double *out, const int *onembed, Chris@10: int ostride, int odist, Chris@10: const fftw_r2r_kind *kind, unsigned flags); Chris@10:Chris@10:
Chris@10: Like fftw_plan_many_dft
, this functions adds howmany
,
Chris@10: nembed
, stride
, and dist
parameters to the
Chris@10: fftw_plan_r2r
function, but otherwise behave the same as the
Chris@10: basic interface. The interpretation of those additional parameters are
Chris@10: the same as for fftw_plan_many_dft
. (Of course, the
Chris@10: stride
and dist
parameters are now in units of
Chris@10: double
, not fftw_complex
.)
Chris@10:
Chris@10:
Arrays n
, inembed
, onembed
, and kind
are not
Chris@10: used after this function returns. You can safely free or reuse them.
Chris@10:
Chris@10:
Chris@10:
Chris@10: