Skip to content

Commit 8e66189

Browse files
committed
Update Fourier README.
1 parent 1fb9d78 commit 8e66189

File tree

1 file changed

+82
-4
lines changed
  • src/algorithms/math/fast-fourier-transform

1 file changed

+82
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,89 @@
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>** &nbsp;&nbsp;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>**&nbsp;&nbsp;&nbsp; which is defined by
1+
# Fourier Transform
42

5-
![alt text](https://wikimedia.org/api/rest_v1/media/math/render/svg/1af0a78dc50bbf118ab6bd4c4dcc3c4ff8502223)
3+
## Definitions
64

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+
![DFT](https://wikimedia.org/api/rest_v1/media/math/render/svg/1af0a78dc50bbf118ab6bd4c4dcc3c4ff8502223)
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+
![FFT](https://upload.wikimedia.org/wikipedia/commons/6/61/FFT-Time-Frequency-View.png)
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+
![FFT](https://upload.wikimedia.org/wikipedia/commons/6/64/FFT_of_Cosine_Summation_Function.png)
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+
![](https://betterexplained.com/wp-content/plugins/wp-latexrender/pictures/45c088dbb767150fc0bacfeb49dd49e5.png)
72+
![](https://betterexplained.com/wp-content/plugins/wp-latexrender/pictures/faeb9c5bf2e60add63ae4a70b293c7b4.png)
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.
780

881
## References
982

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)
1087
- [Wikipedia, DFT](https://www.wikiwand.com/en/Discrete_Fourier_transform)
88+
- [Wikipedia, DTFT](https://en.wikipedia.org/wiki/Discrete-time_Fourier_transform)
1189
- [Wikipedia, FFT](https://www.wikiwand.com/en/Fast_Fourier_transform)

0 commit comments

Comments
 (0)