cupy.fft.irfftn#
- cupy.fft.irfftn(a, s=None, axes=None, norm=None)[source]#
Compute the N-dimensional inverse FFT for real input.
- Parameters:
a (cupy.ndarray) – Array to be transform.
s (None or tuple of ints) – Shape of the output. If
s
is not given, they are determined from the lengths of the input along the axes specified byaxes
.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"
.
- Returns:
The transformed array which shape is specified by
s
and type will convert to complex if the input is other. Ifs
is not given, the length of final transformed axis of output will be2*(m-1)
where m is the length of the final transformed axis of the input.- Return type:
See also