Skip to content

Instantly share code, notes, and snippets.

@pat-hanbury
Last active August 1, 2022 09:59
Show Gist options
  • Save pat-hanbury/0e97a7e71c7de64ff396b8476324484e to your computer and use it in GitHub Desktop.
Save pat-hanbury/0e97a7e71c7de64ff396b8476324484e to your computer and use it in GitHub Desktop.
xs = [float(i/50) for i in range(int(50*PI*2))]
ys = [f_of_x(x) for x in xs]
plt.plot(xs,ys)
plt.title("f(x)");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment