xref: /aosp_15_r20/external/pytorch/docs/source/fft.rst (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1.. role:: hidden
2    :class: hidden-section
3
4torch.fft
5=========
6
7Discrete Fourier transforms and related functions.
8
9.. automodule:: torch.fft
10.. currentmodule:: torch.fft
11
12Fast Fourier Transforms
13-----------------------
14
15.. autosummary::
16    :toctree: generated
17    :nosignatures:
18
19    fft
20    ifft
21    fft2
22    ifft2
23    fftn
24    ifftn
25    rfft
26    irfft
27    rfft2
28    irfft2
29    rfftn
30    irfftn
31    hfft
32    ihfft
33    hfft2
34    ihfft2
35    hfftn
36    ihfftn
37
38Helper Functions
39----------------
40
41.. autosummary::
42    :toctree: generated
43    :nosignatures:
44
45    fftfreq
46    rfftfreq
47    fftshift
48    ifftshift
49