cupy.fft.rfftn¶
-
cupy.fft.rfftn(a, s=None, axes=None, norm=None)[source]¶ Compute the N-dimensional FFT for real input.
Parameters: - a (cupy.ndarray) – Array to be transform.
- s (None or tuple of ints) – Shape to use from the input. If
sis not given, the lengths of the input along the axes specified byaxesare used. - axes (tuple of ints) – Axes over which to compute the FFT.
- norm (None or
"ortho") – Keyword to specify the normalization mode.
Returns: The transformed array which shape is specified by
sand type will convert to complex if the input is other. The length of the last axis transformed will bes[-1]//2+1.Return type: See also