chainer.functions.ifft¶
-
chainer.functions.ifft(x)[source]¶ Inverse fast Fourier transform.
Parameters: x (tuple) – (real, imag)whererealis aVariablestoring the real part andimagis aVariablestoring the imaginary part.Returns: Returns (ry, ri)whereryis the real part of the result andriis 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.