1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
Fast Fourier Transform
===================================
.. currentmodule:: pyo
A Fast Fourier Transform (FFT) is an efficient algorithm to compute
the discrete Fourier transform (DFT) and its inverse (IFFT).
The objects below can be used to perform sound processing in the
spectral domain.
Objects in this category
------------------------------
- :py:class:`FFT` : Fast Fourier Transform.
- :py:class:`IFFT` : Inverse Fast Fourier Transform.
- :py:class:`PolToCar` : Performs the polar to cartesian conversion.
- :py:class:`CarToPol` : Performs the cartesian to polar conversion.
- :py:class:`FrameAccum` : Accumulates the phase differences between successive frames.
- :py:class:`FrameDelta` : Computes the phase differences between successive frames.
- :py:class:`CvlVerb` : Convolution based reverb.
- :py:class:`Vectral` : Performs magnitude smoothing between successive frames.
- :py:class:`IFFTMatrix` : Inverse Fast Fourier Transform with a PyoMatrixObject as input.
*FFT*
-----------------------------------
.. autoclass:: FFT
:members:
.. autoclasstoc::
*IFFT*
-----------------------------------
.. autoclass:: IFFT
:members:
.. autoclasstoc::
*PolToCar*
-----------------------------------
.. autoclass:: PolToCar
:members:
.. autoclasstoc::
*CarToPol*
-----------------------------------
.. autoclass:: CarToPol
:members:
.. autoclasstoc::
*FrameAccum*
-----------------------------------
.. autoclass:: FrameAccum
:members:
.. autoclasstoc::
*FrameDelta*
-----------------------------------
.. autoclass:: FrameDelta
:members:
.. autoclasstoc::
*CvlVerb*
-----------------------------------
.. autoclass:: CvlVerb
:members:
.. autoclasstoc::
*Vectral*
-----------------------------------
.. autoclass:: Vectral
:members:
.. autoclasstoc::
*IFFTMatrix*
-----------------------------------
.. autoclass:: IFFTMatrix
:members:
.. autoclasstoc::
|