Created
April 16, 2019 05:30
-
-
Save allieus/fd3131ffc1e57afc5637fefb347fd070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%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