|
1 |
| -# Discrete Fourier transform |
2 |
| -The Discrete Fourier transform transforms a sequence of `N` complex numbers |
3 |
| -**{x<sub>n</sub>}** := **x<sub>0</sub>, x<sub>1</sub>, x<sub>2</sub> ..., x<sub>N-1</sub>** into another sequence of complex numbers <br> **{X<sub>k</sub>}** := **X<sub>0</sub>, X<sub>1</sub>, X<sub>2</sub> ..., X<sub>N-1</sub>** which is defined by |
| 1 | +# Fourier Transform |
4 | 2 |
|
5 |
| - |
| 3 | +## Definitions |
6 | 4 |
|
| 5 | +The **Fourier Transform** (**FT**) decomposes a function of time (a signal) into |
| 6 | +the frequencies that make it up, in a way similar to how a musical chord can be |
| 7 | +expressed as the frequencies (or pitches) of its constituent notes. |
| 8 | + |
| 9 | +The **Discrete Fourier Transform** (**DFT**) converts a finite sequence of |
| 10 | +equally-spaced samples of a function into a same-length sequence of |
| 11 | +equally-spaced samples of the discrete-time Fourier transform (DTFT), which is a |
| 12 | +complex-valued function of frequency. The interval at which the DTFT is sampled |
| 13 | +is the reciprocal of the duration of the input sequence. An inverse DFT is a |
| 14 | +Fourier series, using the DTFT samples as coefficients of complex sinusoids at |
| 15 | +the corresponding DTFT frequencies. It has the same sample-values as the original |
| 16 | +input sequence. The DFT is therefore said to be a frequency domain representation |
| 17 | +of the original input sequence. If the original sequence spans all the non-zero |
| 18 | +values of a function, its DTFT is continuous (and periodic), and the DFT provides |
| 19 | +discrete samples of one cycle. If the original sequence is one cycle of a periodic |
| 20 | +function, the DFT provides all the non-zero values of one DTFT cycle. |
| 21 | + |
| 22 | +The Discrete Fourier transform transforms a sequence of `N` complex numbers: |
| 23 | + |
| 24 | +{x<sub>n</sub>} = x<sub>0</sub>, x<sub>1</sub>, x<sub>2</sub> ..., x<sub>N-1</sub> |
| 25 | + |
| 26 | +into another sequence of complex numbers: |
| 27 | + |
| 28 | +{X<sub>k</sub>} = X<sub>0</sub>, X<sub>1</sub>, X<sub>2</sub> ..., X<sub>N-1</sub> |
| 29 | + |
| 30 | +which is defined by: |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | +The **Discrete-Time Fourier Transform** (**DTFT**) is a form of Fourier analysis |
| 35 | +that is applicable to the uniformly-spaced samples of a continuous function. The |
| 36 | +term discrete-time refers to the fact that the transform operates on discrete data |
| 37 | +(samples) whose interval often has units of time. From only the samples, it |
| 38 | +produces a function of frequency that is a periodic summation of the continuous |
| 39 | +Fourier transform of the original continuous function. |
| 40 | + |
| 41 | +A **Fast Fourier Transform** (**FFT**) is an algorithm that samples a signal over |
| 42 | +a period of time (or space) and divides it into its frequency components. These |
| 43 | +components are single sinusoidal oscillations at distinct frequencies each with |
| 44 | +their own amplitude and phase. |
| 45 | + |
| 46 | +This transformation is illustrated in Diagram below. Over the time period measured |
| 47 | +in the diagram, the signal contains 3 distinct dominant frequencies. |
| 48 | + |
| 49 | +View of a signal in the time and frequency domain: |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | +An FFT algorithm computes the discrete Fourier transform (DFT) of a sequence, or |
| 54 | +its inverse (IFFT). Fourier analysis converts a signal from its original domain |
| 55 | +to a representation in the frequency domain and vice versa. An FFT rapidly |
| 56 | +computes such transformations by factorizing the DFT matrix into a product of |
| 57 | +sparse (mostly zero) factors. As a result, it manages to reduce the complexity of |
| 58 | +computing the DFT from O(n<sup>2</sup>), which arises if one simply applies the |
| 59 | +definition of DFT, to O(n log n), where n is the data size. |
| 60 | + |
| 61 | +Here a discrete Fourier analysis of a sum of cosine waves at 10, 20, 30, 40, |
| 62 | +and 50 Hz: |
| 63 | + |
| 64 | + |
| 65 | + |
| 66 | +## Explanation |
| 67 | + |
| 68 | +The Fourier Transform is one of deepest insights ever made. Unfortunately, the |
| 69 | +meaning is buried within dense equations: |
| 70 | + |
| 71 | + |
| 72 | + |
| 73 | + |
| 74 | +Rather than jumping into the symbols, let's experience the key idea firsthand. Here's a plain-English metaphor: |
| 75 | + |
| 76 | +- *What does the Fourier Transform do?* Given a smoothie, it finds the recipe. |
| 77 | +- *How?* Run the smoothie through filters to extract each ingredient. |
| 78 | +- *Why?* Recipes are easier to analyze, compare, and modify than the smoothie itself. |
| 79 | +- *How do we get the smoothie back?* Blend the ingredients. |
7 | 80 |
|
8 | 81 | ## References
|
9 | 82 |
|
| 83 | +- [An Interactive Guide To The Fourier Transform](https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/) |
| 84 | +- [YouTube by Better Explained](https://www.youtube.com/watch?v=iN0VG9N2q0U&t=0s&index=77&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8) |
| 85 | +- [YouTube by 3Blue1Brown](https://www.youtube.com/watch?v=spUNpyF58BY&t=0s&index=76&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8) |
| 86 | +- [Wikipedia, FT](https://en.wikipedia.org/wiki/Fourier_transform) |
10 | 87 | - [Wikipedia, DFT](https://www.wikiwand.com/en/Discrete_Fourier_transform)
|
| 88 | +- [Wikipedia, DTFT](https://en.wikipedia.org/wiki/Discrete-time_Fourier_transform) |
11 | 89 | - [Wikipedia, FFT](https://www.wikiwand.com/en/Fast_Fourier_transform)
|
0 commit comments