Skip to content

Instantly share code, notes, and snippets.

@allieus
Created April 16, 2019 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allieus/fd3131ffc1e57afc5637fefb347fd070 to your computer and use it in GitHub Desktop.
Save allieus/fd3131ffc1e57afc5637fefb347fd070 to your computer and use it in GitHub Desktop.
%matplotlib inline
from matplotlib import pyplot as plt
import numpy as np
x = np.arange(0, 10, 0.01)
plt.plot(x, np.cos(x))
plt.plot(x, np.sin(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment