int cfft_rcfft3d(scale, n1, n2, n3, ld1, ld2, data, iopt)
The parameter, "scale", specified the scale factor to be applied to the data.
The size parameters, "n1", "n2" and "n3", specifies the FFT sizes. These must be setup as mixed radix values (must be even) in order to allow the FFT's to be more efficient. It is recommended to use cfft_nrfft5 to calculate these values.
The leading dimension parameters, "ld1" and "ld2", specify the leading dimensions of the float array.
The float array, "data", is the I/O array for the FFT's. This is performed "in place". The output complex data is packed into the float array in a typical half-complex format; it requires the size of data, "ld1" & "ld2", to be at least "n1" + 2 & "n2" + 2; "ld1" & "ld2" are specified in real values.
The parameter, "iopt", is used to specify any other information that is unique to a specific FFT implementation. Currently, the use is for specifying whether to measure or estimate the FFT's when using FFTW routines. The "cfft.h" header defines FFT_MEASURE and FFT_ESTIMATE, besides defining the FFT functions, as integer.