RFFT.reverseTransform

Compute the inverse FFT of the array. Perform post-scaling.

struct RFFT(T)
nothrow @nogc
void
reverseTransform
(
BuiltinComplex!T[] inputBins
,)

Parameters

inputBins BuiltinComplex!T[]

Source arrays (N/2 + 1 frequency bins).

timeData T[]

Destination array (N time samples).

Note: This transform has the benefit you don't have to conjugate the "mirrored" part of the FFT. Excess data in imaginary part of DC and Nyquist bins are ignored.

Meta