Inverse FFT
Matlab/Octave-compatible inverse FFT.
ifft(x)
x |
the input array. |
It uses fft
from the stats package as follows:
fft(x, inverse = TRUE)/length(x)
Note that it does not attempt to make the results real.
The inverse FFT of the input, the same length as x
.
Tom Short
ifft(fft(1:4))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.