chainer.functions.fft¶
-
chainer.functions.fft(x)[source]¶ Fast Fourier transform.
Parameters: x (tuple) – (real, imag)whererealis aVariableor an N-dimensional array storing the real part andimagis aVariableor an N-dimensional array storing the imaginary part.Returns: Returns (ry, iy)whereryis the real part of the result andiyis the imaginary part of the result.Return type: tuple Note
Currently this function supports a tuple as input. It will support a complex numbers directly in the future.