You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Computes the one-dimensional inverse of ``rfft`` for complex-valued input.
299
+
Computes the one-dimensional inverse of ``rfft`` for real-valued input.
300
300
301
301
.. note::
302
302
Applying the one-dimensional inverse discrete Fourier transform for real-valued input to the output of this function must return the original (i.e., non-transformed) input array within numerical accuracy (i.e., ``irfft(rfft(x)) == x``), provided that the transform and inverse transform are performed with the same arguments (axis and normalization mode) and consistent length.
303
303
304
304
Parameters
305
305
----------
306
306
x: array
307
-
input array. Should have a complex-valued floating-point data type.
307
+
input array. Must have a real-valued floating-point data type.
308
308
n: int
309
309
length of the transformed axis of the **output**. If
Computes the n-dimensional inverse of ``rfftn`` for complex-valued input.
408
+
Computes the n-dimensional inverse of ``rfftn`` for real-valued input.
409
409
410
410
.. note::
411
411
Applying the n-dimensional inverse discrete Fourier transform for real-valued input to the output of this function must return the original (i.e., non-transformed) input array within numerical accuracy (i.e., ``irfftn(rfftn(x)) == x``), provided that the transform and inverse transform are performed with the same arguments (axes and normalization mode) and consistent sizes.
412
412
413
413
Parameters
414
414
----------
415
415
x: array
416
-
input array. Should have a complex-valued floating-point data type.
416
+
input array. Must have a real-valued floating-point data type.
417
417
s: Sequence[int]
418
418
size of each transformed axis of the **output**. ``n=s[i]`` is also the number of input points used along the axis (dimension) ``i``, except for the last axis, where ``n=s[-1]//2+1`` points of the input are used. If
0 commit comments