hfft2

paddle.fft. hfft2 ( x, s=None, axes=(- 2, - 1), norm='backward', name=None ) [source]

Compute the 2-D FFT of a Hermitian complex array.

Parameters
  • x (Tensor) – The input data. It’s a Tensor type.

  • s (sequence of ints, optional) – Shape of the real output. Default is None.

  • axes (sequence of ints, optional) – Axes over which to compute the FFT. Axes must be two-dimensional. If not specified, the last two axes are used by default.

  • norm (str) – Indicates which direction to scale the forward or backward transform pair and what normalization factor to use. The parameter value must be one of “forward” or “backward” or “ortho”. Default is “backward”.

  • name (str, optional) – The default value is None. Normally there is no need for user to set this property. For more information, please refer to Name.

Returns

Real tensor. The real result of the 2-D Hermitian complex real FFT.

Examples

>>> import paddle

>>> x = paddle.to_tensor([[3.+3.j, 2.+2.j, 3.+3.j], [2.+2.j, 2.+2.j, 3.+3.j]])
>>> hfft2_x = paddle.fft.hfft2(x)
>>> print(hfft2_x)
Tensor(shape=[2, 4], dtype=float32, place=Place(cpu), stop_gradient=True,
[[19., 7., 3., -9.],
 [1., 1., 1., 1.]])