Skip to article frontmatterSkip to article content
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(64, dtype=np.uint64)
y = x**2 + 2*x + 10

plt.plot(x, y);
<Figure size 640x480 with 1 Axes>