powered by
Matlab/Octave-compatible inverse FFT.
ifft(x)
The inverse FFT of the input, the same length as x.
x
the input array.
Tom Short
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.
ifft(fft(1:4))
Run the code above in your browser using DataLab