ifft(buffer, N)

import signals.fft-1

Calculate inverse Fourier transform (IFFT) on a given array.

bufferInput data for the transform.
Nthe Length of the transform (optional).
return valueThe transformed version of the input.

Argument N is optional. If given and longer than the length of the buffer, the buffer will be padded with zeros to the appropriate length. This will increase the resolution of the transform.

import signals.fft-1;
ifft([1,2,3,4,5,6,7,8])
For more information on FFT, see http://en.wikipedia.org/wiki/Fast_Fourier_transform.