FFT

Contents

FFT#

[3]:
import numpy as np

Eqatuin \(f(x) = \int g(x) dx\)

[4]:
def f(x):
    return 0

Step 2#

[5]:
import matplotlib.pyplot as plt
[8]:
x = np.linspace(0, 20)
plt.plot(x, np.sin(x))
[8]:
[<matplotlib.lines.Line2D at 0x7f58ba208190>]
../_images/notebooks_test_6_1.png
[ ]: