tf.fft2d(input, name=None)
Compute the 2-dimensional discrete Fourier Transform over the inner-most
2 dimensions of input
.
Args:
-
input
: ATensor
of typecomplex64
. A complex64 tensor. -
name
: A name for the operation (optional).
Returns:
A Tensor
of type complex64
. A complex64 tensor of the same shape as input
. The inner-most 2 dimensions of input
are replaced with their 2D Fourier Transform.
Please login to continue.