View source on GitHub |
ND inverse real fast Fourier transform.
tf.signal.irfftnd(
input_tensor, fft_length=None, axes=None, norm=None, name=None
)
Computes the n-dimensional inverse real discrete Fourier transform over
designated dimensions of input_tensor
. The designated dimensions of input_tensor
are
assumed to be the result of IRFFTND
. The inner-most dimension contains the
fft_length / 2 + 1
unique components of the DFT of a real-valued signal.
If fft_length[i]
Axes mean the dimensions to perform the transform on. Default is to perform on all axes.
Returns | |
---|---|
A Tensor of type Treal .
|