Fourier analysis

There are many ways to define the DFT; however, in a NumPy implementation, the DFT is defined as the following equation:

Fourier analysis

A k represents the discrete Fourier transform and am represents the original function. The transformation from am->Ak is a translation from the configuration space to the frequency space. Let's calculate this equation manually to get a better understanding of the transformation process. We will use a random signal with 500 values:

In [25]: x = np.random.random(500) In [26]: n = len(x) In [27]: m = np.arange(n) In [28]: k = m.reshape((n, 1)) In [29]: M = np.exp(-2j * np.pi * k * m / n) In [30]: y = np.dot(M, ...

Get NumPy Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.