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
- ``s[i]`` is ``-1``, the whole input array along the axis ``i`` is used (no padding/trimming).
99
99
- ``s`` is not provided, the size of each transformed axis (dimension) in the output array must equal the size of the corresponding axis in the input array.
100
100
101
-
If ``s`` is not ``None``, ``axes`` must not be ``None`` either, and ``s[i]`` corresponds to the size along the transformed axis specified by ``axes[i]``.
101
+
If ``s`` is not ``None``, ``axes`` must not be ``None`` either, and ``s[i]`` corresponds to the size along the transformed axis specified by ``axes[i]``.
102
102
103
103
Default: ``None``.
104
104
axes: Sequence[int]
105
105
axes (dimensions) over which to compute the Fourier transform. If ``None``, all axes must be transformed.
106
-
106
+
107
107
If ``s`` is specified, the corresponding ``axes`` to be transformed must be explicitly specified too.
108
-
108
+
109
109
Default: ``None``.
110
110
norm: Literal['backward', 'ortho', 'forward']
111
111
normalization mode. Should be one of the following modes:
- ``s[i]`` is ``-1``, the whole input array along the axis ``i`` is used (no padding/trimming).
145
145
- ``s`` is not provided, the size of each transformed axis (dimension) in the output array must equal the size of the corresponding axis in the input array.
146
146
147
-
If ``s`` is not ``None``, ``axes`` must not be ``None`` either, and ``s[i]`` corresponds to the size along the transformed axis specified by ``axes[i]``.
147
+
If ``s`` is not ``None``, ``axes`` must not be ``None`` either, and ``s[i]`` corresponds to the size along the transformed axis specified by ``axes[i]``.
148
148
149
149
Default: ``None``.
150
150
axes: Sequence[int]
151
151
axes (dimensions) over which to compute the Fourier transform. If ``None``, all axes must be transformed.
152
-
152
+
153
153
If ``s`` is specified, the corresponding ``axes`` to be transformed must be explicitly specified too.
154
-
154
+
155
155
Default: ``None``.
156
156
norm: Literal['backward', 'ortho', 'forward']
157
157
specify the normalization mode. Should be one of the following modes:
- ``n//2+1`` is greater than the length of the input array, the input array is zero-padded to length ``n//2+1``.
228
228
- ``n//2+1`` is less than the length of the input array, the input array is trimmed to length ``n//2+1``.
229
229
- ``n`` is not provided, the length of the transformed axis of the output must equal the length ``2*(m-1)``, where ``m`` is the length of the input along the axis specified by ``axis``.
230
-
230
+
231
231
Default: ``None``.
232
232
axis: int
233
233
axis (dimension) over which to compute the inverse Fourier transform. If not set, the last axis (dimension) is used.
234
-
234
+
235
235
Default: ``-1``.
236
236
norm: Literal['backward', 'ortho', 'forward']
237
237
normalization mode. Should be one of the following modes:
- ``n//2+1`` is greater than the length of the input array, the input array is zero-padded to length ``n//2+1``.
356
356
- ``n//2+1`` is less than the length of the input array, the input array is trimmed to length ``n//2+1``.
357
357
- ``n`` is not provided, the length of the transformed axis of the output must equal the length ``2*(m-1)``, where ``m`` is the length of the input along the axis specified by ``axis``.
358
-
358
+
359
359
Default: ``None``.
360
360
axis: int
361
361
axis (dimension) over which to compute the Fourier transform. If not set, the last axis (dimension) is used.
362
-
362
+
363
363
Default: ``-1``.
364
364
norm: Literal['backward', 'ortho', 'forward']
365
365
normalization mode. Should be one of the following modes:
0 commit comments