powered by
Matlab/Octave-compatible inverse FFT.
ifft(x)
the input array.
The inverse FFT of the input, the same length as x.
x
It uses fft from the stats package as follows:
fft
fft(x, inverse = TRUE)/length(x)
Note that it does not attempt to make the results real.
# NOT RUN { ifft(fft(1:4)) # }
Run the code above in your browser using DataLab