This is an example notebook that can be converted with nbconvert
to different formats. This is an example of a markdown cell.
Here is an equation:
$$ y = \sin(x) $$print("This is a code cell that produces some output")
import matplotlib.pyplot as plt
import numpy as np
plt.ion()
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
plt.plot(x, y)