cupyx.scipy.fft.hfft2#
- cupyx.scipy.fft.hfft2(x, s=None, axes=(-2, -1), norm=None, overwrite_x=False, *, plan=None)[source]#
Compute the FFT of a two-dimensional signal that has Hermitian symmetry.
- Parameters:
x (cupy.ndarray) – Array to be transformed.
s (None or tuple of ints) – Shape of the real output.
axes (tuple of ints) – Axes over which to compute the FFT.
norm (
"backward"
,"ortho"
, or"forward"
) – Optional keyword to specify the normalization mode. Default isNone
, which is an alias of"backward"
.overwrite_x (bool) – If True, the contents of
x
can be destroyed. (This argument is currently not supported)plan (None) – This argument is currently not supported.
- Returns:
The real result of the 2-D Hermitian complex real FFT.
- Return type:
See also