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.
- Raises
-
ValueError – if s not be a sequence of 2 integers or None.
ValueError – if axes not be a sequence of 2 integers or None.
ValueError – If the input dimension is smaller than 2.
Examples
import numpy as np import paddle x = (np.array([[3,2,3],[2, 2, 3]]) + 1j * np.array([[3,2,3],[2, 2, 3]])).astype(np.complex128) xp = paddle.to_tensor(x) hfft2_xp = paddle.fft.hfft2(xp).numpy() print(hfft2_xp) # [[19. 7. 3. -9.] # [ 1. 1. 1. 1.]]